Skip to content

Commit e8b9f38

Browse files
committed
Missed one dead initialization in DTBtiChipEquations.cc
1 parent c730b9c commit e8b9f38

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

L1Trigger/DTBti/src/DTBtiChipEquations.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,6 @@ void DTBtiChip::computeEqs() {
160160
//patt 0 always uses Xbc, because Xad could be negative...
161161
//when wire B is missing, TshiftB=0
162162
//when hit B is gone out of shift register, Tshift=K0+1
163-
float _difs_p0 = _difs[5];
164-
165163
float TshiftB = 0;
166164
float TshiftC = 0;
167165
if (_thisStepUsedHit[3 - 1] == nullptr) {
@@ -180,7 +178,7 @@ void DTBtiChip::computeEqs() {
180178
} else
181179
TshiftC = _thisStepUsedHit[2 - 1]->jtrig();
182180

183-
_difs_p0 = (float)(TshiftB - TshiftC);
181+
float _difs_p0 = (float)(TshiftB - TshiftC);
184182

185183
// Zotto's
186184
_XeqAB_patt0 = (_sums[1] - K0) / 4.; //eq. AB

0 commit comments

Comments
 (0)