Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove module-level plots from online Strip DQM #9457

Merged
merged 1 commit into from
Jun 9, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions DQM/SiStripMonitorClient/python/SiStripSourceConfigP5_cff.py
Expand Up @@ -32,6 +32,7 @@
SiStripMonitorDigi.TH1ADCsHottestStrip.moduleswitchon = False
SiStripMonitorDigi.TH1DigiADCs.moduleswitchon = False
SiStripMonitorDigi.TH1StripOccupancy.moduleswitchon = False
SiStripMonitorDigi.TH1NumberOfDigis.moduleswitchon = False

from DQM.SiStripMonitorDigi.SiStripBaselineValidator_cfi import *

Expand All @@ -52,22 +53,24 @@
SiStripMonitorClusterReal.TH1NrOfClusterizedStrips.moduleswitchon = False
SiStripMonitorClusterReal.TH1ClusterNoise.moduleswitchon = False
SiStripMonitorClusterReal.TH1ClusterStoN.moduleswitchon = False
SiStripMonitorClusterReal.TH1ClusterCharge.moduleswitchon = True
SiStripMonitorClusterReal.TH1ClusterCharge.moduleswitchon = False
SiStripMonitorClusterReal.TH1ClusterWidth.moduleswitchon = False
SiStripMonitorClusterReal.TH1ModuleLocalOccupancy.moduleswitchon = False
SiStripMonitorClusterReal.TH1nClusters.moduleswitchon = False
SiStripMonitorClusterReal.TH1ClusterPos.moduleswitchon = False

# SiStripMonitorTrack ####
# Clone for Cosmic Track Finder
import DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi
SiStripMonitorTrack_cosmicTk = DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi.SiStripMonitorTrack.clone()
SiStripMonitorTrack_cosmicTk.TrackProducer = 'cosmictrackfinderP5'
SiStripMonitorTrack_cosmicTk.Mod_On = True
SiStripMonitorTrack_cosmicTk.Mod_On = False

# Clone for CKF Tracks
import DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi
SiStripMonitorTrack_ckf = DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi.SiStripMonitorTrack.clone()
SiStripMonitorTrack_ckf.TrackProducer = 'ctfWithMaterialTracksP5'
SiStripMonitorTrack_ckf.Mod_On = True
SiStripMonitorTrack_ckf.Mod_On = False

# Clone fir Road Search Tracks
#import DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi
Expand All @@ -79,7 +82,7 @@
import DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi
SiStripMonitorTrack_gentk = DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi.SiStripMonitorTrack.clone()
SiStripMonitorTrack_gentk.TrackProducer = 'generalTracks'
SiStripMonitorTrack_gentk.Mod_On = True
SiStripMonitorTrack_gentk.Mod_On = False

# Clone for Heavy Ion Tracks (for HI Collisions)
import DQM.SiStripMonitorTrack.SiStripMonitorTrack_cfi
Expand Down