Skip to content

Commit

Permalink
Actually remove commented lines
Browse files Browse the repository at this point in the history
  • Loading branch information
aandvalenzuela authored Jan 19, 2023
1 parent dcffbc1 commit 233472b
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,6 @@ bool TrackTransformerForCosmicMuons::SlopeSum(const TransientTrackingRecHit::Con
std::vector<float> pz;
// int quadrant = -1;

// float sumdy = 0;
float sumdz = 0;

for (TransientTrackingRecHit::ConstRecHitContainer::const_iterator hit = tkHits.begin(); hit != tkHits.end(); ++hit) {
Expand All @@ -470,7 +469,6 @@ bool TrackTransformerForCosmicMuons::SlopeSum(const TransientTrackingRecHit::Con
dslope = dy / dz;
if (!first) {
retval += dslope;
// sumdy += dy;
sumdz += dz;
}
first = false;
Expand Down Expand Up @@ -502,7 +500,6 @@ float TrackTransformerForCosmicMuons::SumDy(const TransientTrackingRecHit::Const
// int quadrant = -1;

float sumdy = 0;
// float sumdz = 0;

for (TransientTrackingRecHit::ConstRecHitContainer::const_iterator hit = tkHits.begin(); hit != tkHits.end(); ++hit) {
DetId hitId = (*hit)->geographicalId();
Expand All @@ -513,7 +510,6 @@ float TrackTransformerForCosmicMuons::SumDy(const TransientTrackingRecHit::Const
float y2 = glbpoint.y();
float z2 = glbpoint.z();
float dy = y2 - y1;
// float dz = z2 - z1;

// if (y2 > 0 && z2 > 0) quadrant = 1;
// else if (y2 > 0 && z2 < 0) quadrant = 2;
Expand All @@ -522,7 +518,6 @@ float TrackTransformerForCosmicMuons::SumDy(const TransientTrackingRecHit::Const

if (!first) {
sumdy += dy;
// sumdz += dz;
}
first = false;
py.push_back(y1);
Expand Down

0 comments on commit 233472b

Please sign in to comment.