Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DQM/L1TMonitor/src/L1TStage2CaloLayer1.cc
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ void L1TStage2CaloLayer1::updateMismatch(
if (e.getRun().id() == std::get<0>(*mismatchIterator) &&
e.getLuminosityBlock().id() == std::get<1>(*mismatchIterator) && e.id() == std::get<2>(*mismatchIterator)) {
//the run, lumi and event exist. Check if this kind of mismatch has been reported before
std::vector<int> mismatchTypeVector = std::get<3>(*mismatchIterator);
std::vector<int>& mismatchTypeVector = std::get<3>(*mismatchIterator);
for (auto mismatchTypeIterator = mismatchTypeVector.begin(); mismatchTypeIterator != mismatchTypeVector.end();
++mismatchTypeIterator) {
if (mismatchType == *mismatchTypeIterator) {
Expand Down