CMS 3D CMS Logo

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