]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFRawStream.cxx
Reject clusters that are matched to more than one track
[u/mrichter/AliRoot.git] / TOF / AliTOFRawStream.cxx
index 138ed7b0ac7d019ae120ad25891af828bbe7c98d..9109fce54aaa64fd56b64fa135d4287abfadf8d4 100644 (file)
@@ -1724,9 +1724,9 @@ AliTOFRawStream::LoadRawDataBuffersV2(Int_t indexDDL, Int_t verbose)
   const AliRawDataHeader *currentCDH = fRawReader->GetDataHeader();
   const AliRawDataHeaderV3 *currentCDHV3 = fRawReader->GetDataHeaderV3();
   Int_t currentMiniEventID = currentCDH ? currentCDH->GetMiniEventID(): -1;
-  currentMiniEventID = currentCDHV3 ? currentCDHV3->GetMiniEventID(): -1;
+  currentMiniEventID = currentCDHV3 ? currentCDHV3->GetMiniEventID(): currentMiniEventID;
   Int_t currentEventID1 = currentCDH? currentCDH->GetEventID1() : -1;
-  currentEventID1 = currentCDHV3? currentCDHV3->GetEventID1() : -1;
+  currentEventID1 = currentCDHV3? currentCDHV3->GetEventID1() : currentEventID1;
 
   /* read decoder summary data */
   AliTOFDecoderSummaryData *decodersd;