Skip to content

Commit

Permalink
Formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ccahoughton committed Feb 8, 2024
1 parent 5abb932 commit 732215c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions L1Trigger/L1TTrackMatch/plugins/L1TrackJetEmulatorProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,10 @@ void L1TrackJetEmulatorProducer::produce(Event &iEvent, const EventSetup &iSetup
int j = eta_bin_firmwareStyle(L1TrkPtrs_[k]->getTanlWord()); //Function defined in L1TrackJetClustering.h

//This is a quick fix to eta going outside of scope - also including protection against phi going outside
//of scope as well. The eta index, j, cannot be less than zero or greater than 23 (the number of eta bins
//minus one). The phi index, i, cannot be less than zero or greater than 26 (the number of phi bins
//of scope as well. The eta index, j, cannot be less than zero or greater than 23 (the number of eta bins
//minus one). The phi index, i, cannot be less than zero or greater than 26 (the number of phi bins
//minus one).
if ((j < 0) || (j > (etaBins_-1)) || (i < 0) || (i > (phiBins_-1)))
if ((j < 0) || (j > (etaBins_ - 1)) || (i < 0) || (i > (phiBins_ - 1)))
continue;

if (trkpt < pt_intern(trkPtMax_))
Expand Down

0 comments on commit 732215c

Please sign in to comment.