]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
From Jiri:
authorloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 4 Jul 2013 18:32:31 +0000 (18:32 +0000)
committerloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 4 Jul 2013 18:32:31 +0000 (18:32 +0000)
Disables the processing on all MC data and all real prior to 11h period. The reason is that the STU (L1 system) provided data are nonsense before the 11h and in the whole MC so far. This then causes trouble in the primitives recovery.

PWG/EMCAL/AliEmcalTriggerMaker.cxx

index 634154446027b1fe85a0264186fcc4b8ff869953..87a42549946a8fc8c03a828e0662150b234fb498 100644 (file)
@@ -120,6 +120,16 @@ Bool_t AliEmcalTriggerMaker::Run()
     return kTRUE;
   }
   
+  // do not process, if sooner than 11h period
+  if( InputEvent()->GetRunNumber() < 167693 )
+    return kTRUE;
+
+  // do not process any MC, since no MC was generated with correct
+  // EMCal trigger L1 jet trigger simulation, yet
+  // productions will be enabled, once some correct once are produced
+  if( MCEvent() != 0 )
+    return kTRUE;
+  
   // must reset before usage, or the class will fail 
   fCaloTriggers->Reset();