Skip to content

Commit 2554929

Browse files
committed
Fix bit ordering in HGC hwqual
1 parent 847e52d commit 2554929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

L1Trigger/Phase2L1ParticleFlow/src/l1-converters/hgcalinputt_ref.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ bool l1ct::HgcalClusterDecoderEmulator::MultiClassID::evaluate(l1ct::HadCaloObjE
230230
// bit 0: PF EM ID
231231
// bit 1: EG EM ID
232232
// bit 2: EG Loose ID
233-
cl.hwEmID = passPFEm | (passEgEm << 1) | (passEgEm_tight << 2);
233+
cl.hwEmID = passPFEm | (passEgEm_tight << 1) | (passEgEm << 2);
234234

235235
cl.hwPiProb = sm_scores[1];
236236
cl.hwEmProb = sm_scores[2];

0 commit comments

Comments
 (0)