CMS 3D CMS Logo

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