]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Bug fix: the mask should be 64-bit. The bug was the reason for the many 'classindex...
authorcvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 15 Nov 2009 21:44:01 +0000 (21:44 +0000)
committercvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 15 Nov 2009 21:44:01 +0000 (21:44 +0000)
STEER/AliReconstruction.cxx

index 3e240d45808c9d4d003741d90566c444336c98e7..0707bf9c45f8a8a2ec56058e478f3f04891fd8c6 100644 (file)
@@ -2677,7 +2677,7 @@ Bool_t AliReconstruction::FillTriggerScalers(AliESDEvent*& esd)
      //AliTimeStamp* timestamp = new AliTimeStamp(10308000, 0, (ULong64_t)486238);
      AliESDHeader* esdheader = fesd->GetHeader();
      for(Int_t i=0;i<50;i++){
-          if((1<<i) & esd->GetTriggerMask()){
+          if((1ull<<i) & esd->GetTriggerMask()){
           AliTriggerScalersESD* scalesd = fRunScalers->GetScalersForEventClass( timestamp, i+1);
           if(scalesd)esdheader->SetTriggerScalersRecord(scalesd);
         }