Skip to content

Commit bb9299a

Browse files
committed
Restriction of reemul fg0 in ieta16
1 parent d16b282 commit bb9299a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SimCalorimetry/HcalTrigPrimAlgos/src/HcalFinegrainBit.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ std::bitset<6> HcalFinegrainBit::compute(const HcalFinegrainBit::TowerTDC& tower
9696
}
9797

9898
// very delayed (001000), slightly delayed (000100), prompt (000010), depth flag (000001), 2 reserved bits (110000)
99-
if (DeepEnergy > 0 && EarlyEnergy == 0)
99+
if (DeepEnergy > 0 && EarlyEnergy == 0 && abs(tp_ieta) != 16)
100100
result[0] = true; // 000001
101101
else
102102
result[0] = false;

0 commit comments

Comments
 (0)