Skip to content

Commit

Permalink
[EMCAL-529] Changed variable named with keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Sierra Weyhmiller committed Jul 4, 2024
1 parent 931338b commit e2d3e8e
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 e2d3e8e

Please sign in to comment.