Skip to content

Commit

Permalink
Corrects TriggerTRU code so that masking by STU actually prevents the…
Browse files Browse the repository at this point in the history
… TRU

from contributing to L1 Triggers.
  • Loading branch information
Michael Oliver committed Aug 7, 2019
1 parent 5965374 commit 0b13fce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions EMCAL/EMCALsim/AliEMCALTriggerTRU.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,10 @@ void AliEMCALTriggerTRU::GetL0Region(const int time, Int_t arr[][4])
//________________
void AliEMCALTriggerTRU::GetL0Region(const int time, Int_t ** arr)
{
if(!fActive) {
AliDebug(999, "Not filling L0 Region for inactive TRU");
return;
}
Int_t r0 = time - fDCSConfig->GetRLBKSTU();

if (r0 < 0)
Expand Down

0 comments on commit 0b13fce

Please sign in to comment.