Skip to content

Commit

Permalink
Merge pull request #675 in B2/basf2 from bugfix/trggrl_seklm to relea…
Browse files Browse the repository at this point in the history
…se/06-01

* commit '4bc22e115710df3ea83af3c80cfc608a038ce72b':
  bug fix of seklm hit threshold
  • Loading branch information
GiacomoXT committed Feb 8, 2022
2 parents ff3b83f + 4bc22e1 commit 7f47ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trg/grl/modules/trggrl/src/TRGGRLProjectsModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -808,8 +808,8 @@ void TRGGRLProjectsModule::event()
else if (bitname == "brlfb2") {bit = brlfb == 2;}
else if (bitname == "brlnb1") {bit = brlnb == 1;}
else if (bitname == "brlnb2") {bit = brlnb == 2;}
else if (bitname == "seklm_0") {bit = n_seklm == 0;}
else if (bitname == "seklm_1") {bit = n_seklm > 0;}
else if (bitname == "seklm_0") {bit = n_seklm == 1;}
else if (bitname == "seklm_1") {bit = n_seklm > 1;}
else if (bitname == "ieklm") {bit = n_ieklm > 0;}
else if (bitname == "secl") {bit = n_secl > 0;}
else if (bitname == "iecl") {bit = n_iecl > 0;}
Expand Down

0 comments on commit 7f47ed3

Please sign in to comment.