CMS 3D CMS Logo

Variables

MonitorTrackResiduals_cfi Namespace Reference

Variables

tuple MonitorTrackResiduals

Variable Documentation

Initial value:
00001 cms.EDAnalyzer("MonitorTrackResiduals",
00002     OutputMEsInRootFile = cms.bool(False),
00003     # should histogramms on module level be booked and filled?
00004     Mod_On = cms.bool(True),
00005     trajectoryInput = cms.string('TrackRefitter'),
00006     OutputFileName = cms.string('test_monitortracks.root'),
00007     # bining and range for absolute and normalized residual histogramms
00008     TH1ResModules = cms.PSet(
00009         xmin = cms.double(-0.05),   # native unit in CMS is [cm], so these are 500um
00010         Nbinx = cms.int32(100),
00011         xmax = cms.double(0.05)
00012     ),
00013     TH1NormResModules = cms.PSet(
00014         xmin = cms.double(-5.0),
00015         Nbinx = cms.int32(100),
00016         xmax = cms.double(5.0)
00017     ),
00018     # input for Tracks and Trajectories, should be TrackRefitter
00019     # or similar
00020     Tracks = cms.InputTag("TrackRefitter"),
00021     # should all MEs be reset after each run?
00022     ResetAfterRun = cms.bool(True)
00023 )

Definition at line 4 of file MonitorTrackResiduals_cfi.py.