Skip to content
Snippets Groups Projects
Commit 0656ec3e authored by Sergey Gorbunov's avatar Sergey Gorbunov Committed by Volker Friese
Browse files

compiler warning fixes in MVD code

parent a545be98
No related branches found
No related tags found
1 merge request!1418compiler warning fixes in MVD code
Pipeline #25070 passed
...@@ -108,7 +108,7 @@ void CbmMvdSensorFrameBuffer::SendInputArray(TClonesArray* inputStream) ...@@ -108,7 +108,7 @@ void CbmMvdSensorFrameBuffer::SendInputArray(TClonesArray* inputStream)
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
void CbmMvdSensorFrameBuffer::SetInput(CbmMvdPoint* point) void CbmMvdSensorFrameBuffer::SetInput(TObject* point)
{ {
new ((*fBuffer)[fBuffer->GetEntriesFast()]) CbmMvdPoint(*((CbmMvdPoint*) point)); new ((*fBuffer)[fBuffer->GetEntriesFast()]) CbmMvdPoint(*((CbmMvdPoint*) point));
......
...@@ -49,7 +49,7 @@ public: ...@@ -49,7 +49,7 @@ public:
// Send a new event to the buffer. The event will be absorbed but not processed. // Send a new event to the buffer. The event will be absorbed but not processed.
// The input - array will be emptied // The input - array will be emptied
void SendInputArray(TClonesArray* inputStream); void SendInputArray(TClonesArray* inputStream);
void SetInput(CbmMvdPoint* point); void SetInput(TObject* point);
// Receives the current event from the buffer. The Event is defined by the functions // Receives the current event from the buffer. The Event is defined by the functions
// BuildTimeSlice or BuildMimosaFrame. The memory is not emtied, use Clear*-methods // BuildTimeSlice or BuildMimosaFrame. The memory is not emtied, use Clear*-methods
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment