Skip to content

Commit

Permalink
Merge pull request #24770 from arossi83/FPixClustersOnlineFix
Browse files Browse the repository at this point in the history
Fix to Online Forward Pixel maps
  • Loading branch information
cmsbuild committed Oct 4, 2018
2 parents 2ab6fd3 + 8c0cda5 commit 0b2906d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DQM/SiPixelPhase1Summary/src/SiPixelPhase1Summary.cc
Original file line number Diff line number Diff line change
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 0b2906d

Please sign in to comment.