Skip to content
Closed
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
8 changes: 8 additions & 0 deletions DQMServices/Core/src/DQMStore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,14 @@ namespace dqm::implementation {
auto other = this->findME(me);
if (other) {
// we still have a global one, so we can just remove this.
for (auto& locals : localMEs_) {
auto itLocal = locals.second.find(me);
if (itLocal != locals.second.end() and (*itLocal)->mutable_ == me->mutable_) {
debugTrackME("cleanupLumi (switchData)", *itLocal, me);
(*itLocal)->switchData(other);
break;
}
}
debugTrackME("cleanupLumi (delete)", nullptr, me);
delete me;
} else {
Expand Down