Skip to content

Commit 4bc22e1

Browse files
author
taichiro
committed
bug fix of seklm hit threshold
1 parent 2146242 commit 4bc22e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

trg/grl/modules/trggrl/src/TRGGRLProjectsModule.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,8 +808,8 @@ void TRGGRLProjectsModule::event()
808808
else if (bitname == "brlfb2") {bit = brlfb == 2;}
809809
else if (bitname == "brlnb1") {bit = brlnb == 1;}
810810
else if (bitname == "brlnb2") {bit = brlnb == 2;}
811-
else if (bitname == "seklm_0") {bit = n_seklm == 0;}
812-
else if (bitname == "seklm_1") {bit = n_seklm > 0;}
811+
else if (bitname == "seklm_0") {bit = n_seklm == 1;}
812+
else if (bitname == "seklm_1") {bit = n_seklm > 1;}
813813
else if (bitname == "ieklm") {bit = n_ieklm > 0;}
814814
else if (bitname == "secl") {bit = n_secl > 0;}
815815
else if (bitname == "iecl") {bit = n_iecl > 0;}

0 commit comments

Comments
 (0)