Skip to content

Commit

Permalink
fix: variable swimmer is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Jan 14, 2025
1 parent 8e7c0ab commit 493cef9
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public List<StraightTrack> getCosmics(DataEvent event) {
Collections.sort(SVThits);
}
if(BMThits!=null) {
for(Hit hit : BMThits) {
hit.getStrip().calcBMTStripParams(hit.getSector(), hit.getLayer(), swimmer);
}
// for(Hit hit : BMThits) {
// hit.getStrip().calcBMTStripParams(hit.getSector(), hit.getLayer(), swimmer);
// }
Collections.sort(BMThits);
}

Expand Down Expand Up @@ -96,9 +96,9 @@ public List<Track> getTracks(DataEvent event) {
Collections.sort(SVThits);
}
if(BMThits!=null) {
for(Hit hit : BMThits) {
hit.getStrip().calcBMTStripParams(hit.getSector(), hit.getLayer(), swimmer);
}
// for(Hit hit : BMThits) {
// hit.getStrip().calcBMTStripParams(hit.getSector(), hit.getLayer(), swimmer);
// }
Collections.sort(BMThits);
}

Expand Down

0 comments on commit 493cef9

Please sign in to comment.