CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQM/TrackerMonitorTrack/python/MonitorTrackResiduals_cfi.py

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