CMS 3D CMS Logo

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