Skip to content

Commit

Permalink
[EMCAL-529] Changed variable named with keyword (#2365)
Browse files Browse the repository at this point in the history
Co-authored-by: Sierra Weyhmiller <sierra.lisa.weyhmiller@cern.ch>
  • Loading branch information
sweyh99 and Sierra Weyhmiller authored Jul 10, 2024
1 parent 90c35b1 commit 635ab26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Modules/EMCAL/src/NumPatchesPerFastORCheck.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ Quality NumPatchesPerFastORCheck::check(std::map<std::string, std::shared_ptr<Mo
}

// Save the final bad FastORs
FastORNoiseLevel final{ i->mCounts, i->mFastORID, i->mPosGlobalPhi, i->mPosGlobalEta, i->mRejected };
finalBadFastORs.push_back(final);
FastORNoiseLevel finalFastOR{ i->mCounts, i->mFastORID, i->mPosGlobalPhi, i->mPosGlobalEta, i->mRejected };
finalBadFastORs.push_back(finalFastOR);
}

// Save the positions of the final Bad FastORs and display the error message
Expand Down Expand Up @@ -212,8 +212,8 @@ Quality NumPatchesPerFastORCheck::check(std::map<std::string, std::shared_ptr<Mo
}

// Save the final med FastORs
FastORNoiseLevel final{ i->mCounts, i->mFastORID, i->mPosGlobalPhi, i->mPosGlobalEta, i->mRejected };
finalMedFastORs.push_back(final);
FastORNoiseLevel finalFastOR{ i->mCounts, i->mFastORID, i->mPosGlobalPhi, i->mPosGlobalEta, i->mRejected };
finalMedFastORs.push_back(finalFastOR);
}

// Save the positions of the final Med FastORs and display the error message
Expand Down

0 comments on commit 635ab26

Please sign in to comment.