Skip to content

Commit

Permalink
Merge pull request #36778 from jfernan2/patch-20
Browse files Browse the repository at this point in the history
[DQM] Fix for DQM merging exception due to duplicated labels
  • Loading branch information
cmsbuild committed Jan 23, 2022
2 parents e1c176a + 23ea057 commit 694062d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DQM/DTMonitorModule/src/DTDataIntegrityTask.cc
Expand Up @@ -373,7 +373,7 @@ void DTDataIntegrityTask::bookHistosROS(DQMStore::IBooker& ibooker, const int wh
if (link > 18 && link < 22)
sector = 14;
else if (link == 22 || link == 23)
rob = rob - 1;
rob = rob - 3;
}

//Sector 11 exceptions
Expand Down Expand Up @@ -474,7 +474,7 @@ void DTDataIntegrityTask::bookHistosROS(DQMStore::IBooker& ibooker, const int wh
if (link > 18 && link < 22)
sector = 14;
else if (link == 22 || link == 23)
rob = rob - 1;
rob = rob - 3;
}

//Sector 11 exceptions
Expand Down

0 comments on commit 694062d

Please sign in to comment.