Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
aloeliger committed Oct 31, 2024
1 parent 291e90b commit 9b9f206
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion L1Trigger/L1TCaloLayer1/test/testUCTLayer1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void print(UCTLayer1& uct) {
if (regions[rgn]->et() > 0) {
int hitEta = regions[rgn]->hitCaloEta();
int hitPhi = regions[rgn]->hitCaloPhi();
auto const& towers = regions[rgn]->getTowers();
auto const& towers = regions[rgn]->getTowers();
for (uint32_t twr = 0; twr < towers.size(); twr++) {
if (towers[twr]->caloPhi() == hitPhi && towers[twr]->caloEta() == hitEta) {
std::cout << "*";
Expand Down
2 changes: 1 addition & 1 deletion L1Trigger/L1TCaloLayer1/test/testUCTLayer1HF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void print(UCTLayer1& uct) {
for (uint32_t crd = 0; crd < cards.size(); crd++) {
vector<UCTRegion*> regions = cards[crd]->getRegions();
for (uint32_t rgn = 0; rgn < regions.size(); rgn++) {
auto const& towers = regions[rgn]->getTowers();
auto const& towers = regions[rgn]->getTowers();
for (uint32_t twr = 0; twr < towers.size(); twr++) {
if (towers[twr]->et() != 0)
std::cout << *towers[twr] << std::endl;
Expand Down

0 comments on commit 9b9f206

Please sign in to comment.