Skip to content

Commit 23178e7

Browse files
committed
Fix dead assignment in CSCTFPtLUT.cc
1 parent 52ae4e3 commit 23178e7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

L1Trigger/CSCTrackFinder/src/CSCTFPtLUT.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,6 @@ ptdat CSCTFPtLUT::calcPt(const ptadd& address) const {
409409

410410
// First remake the 12-bit dPhi word from the core
411411
remerged = (address.delta_phi_12 | (address.delta_phi_23 << 8));
412-
// Now get 8-bit dPhi12
413-
absPhi12 = ((1 << 8) - 1) & remerged;
414412
// Now get 3-bit dEta
415413
dEta = ((1 << 3) - 1) & (remerged >> 8);
416414
// New get CLCT bit. CLCT = true if CLCTPattern = 8, 9, or 10, else 0.

0 commit comments

Comments
 (0)