Skip to content

Commit

Permalink
Merge pull request #14337 from schneiml/trackermonitortrack-tid-fix
Browse files Browse the repository at this point in the history
TrackerMonitorTrack: Fix side for TID so that TID/MINUS histograms appear. (8_1_X)
  • Loading branch information
cmsbuild committed May 3, 2016
2 parents 7bdf274 + 30afb71 commit 00634d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions DQM/TrackerMonitorTrack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ The data shown in the histograms is computed by the Alignment/OfflineValidation
* `SiStrip/MechanicalView/TID/PLUS/wheel_1/HitResiduals_TID__wheel__1`
* `SiStrip/MechanicalView/TID/PLUS/wheel_2/HitResiduals_TID__wheel__2`
* `SiStrip/MechanicalView/TID/PLUS/wheel_3/HitResiduals_TID__wheel__3`
* `SiStrip/MechanicalView/TID/MINUS/wheel_1/HitResiduals_TID__wheel__1`
* `SiStrip/MechanicalView/TID/MINUS/wheel_2/HitResiduals_TID__wheel__2`
* `SiStrip/MechanicalView/TID/MINUS/wheel_3/HitResiduals_TID__wheel__3`
* `SiStrip/MechanicalView/TOB/layer_1/HitResiduals_TOB__Layer__1`
* `SiStrip/MechanicalView/TOB/layer_2/HitResiduals_TOB__Layer__2`
* `SiStrip/MechanicalView/TOB/layer_3/HitResiduals_TOB__Layer__3`
Expand Down
2 changes: 1 addition & 1 deletion DQM/TrackerMonitorTrack/src/MonitorTrackResiduals.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ std::pair<std::string, int32_t> MonitorTrackResidualsBase<pixel_or_strip>::findS
break;
case 4:
subdet = "TID";
layer = tTopo->tidWheel(id) * ( tTopo->tecSide(ModuleID)==1 ? -1 : +1);
layer = tTopo->tidWheel(id) * ( tTopo->tidSide(ModuleID)==1 ? -1 : +1);
break;
case 5:
subdet = "TOB";
Expand Down

0 comments on commit 00634d0

Please sign in to comment.