Skip to content

Commit 4b82a2b

Browse files
committed
Fix to L1 ZDC Emulation to fix Et Sum truncation.
1 parent b96fd02 commit 4b82a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

L1Trigger/L1TZDC/plugins/L1TZDCProducer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void L1TZDCProducer::produce(edm::Event& iEvent, const edm::EventSetup& iSetup)
125125
for (int ibx = 0; ibx < nSamples; ibx++) {
126126
if (ibx >= nPresamples + bxFirst_ && ibx <= nPresamples + bxLast_) {
127127
HcalTriggerPrimitiveSample hcalTpSample = hcalTp.sample(ibx);
128-
int ietIn = hcalTpSample.compressedEt();
128+
int ietIn = hcalTpSample.raw();
129129

130130
l1t::EtSum tempEt = l1t::EtSum();
131131
tempEt.setHwPt(ietIn);

0 commit comments

Comments
 (0)