Skip to content

Commit

Permalink
Merge pull request #11039 from danduggan/DQMstoreFasterReset75x
Browse files Browse the repository at this point in the history
Patching to better handle LS based histos during LS transitions in 75x
  • Loading branch information
cmsbuild committed Sep 1, 2015
2 parents f5b8f87 + fbaadd1 commit 01f9c67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQMServices/Core/src/DQMStore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ void DQMStore::mergeAndResetMEsLuminositySummaryCache(uint32_t run,
std::set<MonitorElement>::const_iterator i_lumi = data_.lower_bound(global_me);
while (i_lumi->data_.lumi != lumi) {
auto temp = i_lumi++;
if (i_lumi->getFullname() == i->getFullname() && i_lumi->markedToDelete())
if (i_lumi->getName() == i->getName() && i_lumi->getPathname() == i->getPathname() && i_lumi->markedToDelete())
{
data_.erase(temp);
}
Expand Down

0 comments on commit 01f9c67

Please sign in to comment.