Skip to content

Commit

Permalink
Fix to bug which prevent FPix clusters position maps on plus side to …
Browse files Browse the repository at this point in the history
…be reset every 10LS
  • Loading branch information
Alessandro Rossi committed Oct 2, 2018
1 parent a8a031d commit 0f67a7b
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 0f67a7b

Please sign in to comment.