Skip to content

Commit

Permalink
Merge pull request #24788 from arossi83/FPixClustersOnlineFix_1025
Browse files Browse the repository at this point in the history
Bugfix on FPix online clusters position maps (backport of #24770)
  • Loading branch information
cmsbuild committed Oct 16, 2018
2 parents 6864444 + 0f67a7b commit aa968dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DQM/SiPixelPhase1Summary/src/SiPixelPhase1Summary.cc
Expand Up @@ -388,8 +388,8 @@ void SiPixelPhase1Summary::fillTrendPlots(DQMStore::IBooker & iBooker, DQMStore:
toReset->Reset();
}
}
for (auto it : {-3,-2,-1,1,2,3}){ //PXForward
histName = "PixelPhase1/Phase1_MechanicalView/PXForward/clusterposition_xy_PXDisk_" + std::to_string(it);
for (auto it : {"-3","-2","-1","+1","+2","+3"}){ //PXForward
histName = "PixelPhase1/Phase1_MechanicalView/PXForward/clusterposition_xy_PXDisk_" + std::string(it);
MonitorElement * toReset = iGetter.get(histName);
if (toReset!=nullptr) {
toReset->Reset();
Expand Down

0 comments on commit aa968dc

Please sign in to comment.