CMS 3D CMS Logo

SiPixelMonitorTrackResiduals_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # SiPixelMonitorTrackResiduals
4 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 SiPixelMonitorTrackResiduals = DQMEDAnalyzer("SiPixelMonitorTrackResiduals",
6  OutputMEsInRootFile = cms.bool(False),
7  # should histogramms on module level be booked and filled?
8  Mod_On = cms.bool(False),
9  OutputFileName = cms.string('test_monitortracks.root'),
10  genericTriggerEventPSet = cms.PSet(),
11  # bining and range for absolute and normalized residual histogramms
12  TH1ResModules = cms.PSet(
13  xmin = cms.double(-0.05), # native unit in CMS is [cm], so these are 500um
14  Nbinx = cms.int32(100),
15  xmax = cms.double(0.05)
16  ),
17  TH1NormResModules = cms.PSet(
18  xmin = cms.double(-5.0),
19  Nbinx = cms.int32(100),
20  xmax = cms.double(5.0)
21  ),
22  # input for Tracks and Trajectories, should be TrackRefitter
23  # or similar
24  Tracks = cms.InputTag("refittedForPixelDQM"),
25  trajectoryInput = cms.string("refittedForPixelDQM"),
26  # should all MEs be reset after each run?
27  ResetAfterRun = cms.bool(True)
28 )
29 
30