CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackerOfflineValidationSummary_cfi.py
Go to the documentation of this file.
2 
3 TrackerOfflineValidationSummary = cms.EDAnalyzer("TrackerOfflineValidationSummary",
4  moduleDirectoryInOutput = cms.string("Alignment/Tracker"), # has to be the same as in TrackerOfflineValidation_Dqm_cff
5  useFit = cms.bool(False),
6  stripYDmrs = cms.bool(False), # should be the same as for stripYResiduals in TrackerOfflineValidation_Dqm_cff
7  removeModuleLevelHists = cms.bool(False), # Remove module level hists after extracting the necessary information
8  minEntriesPerModuleForDmr = cms.uint32(100),
9 
10  # DMR (distribution of median of residuals per module) of X coordinate (Strip)
11  TH1DmrXprimeStripModules = cms.PSet(
12  Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
13  ),
14 
15  # DMR (distribution of median of residuals per module) of Y coordinate (Strip)
16  TH1DmrYprimeStripModules = cms.PSet(
17  Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
18  ),
19 
20  # DMR (distribution of median of residuals per module) of X coordinate (Pixel)
21  TH1DmrXprimePixelModules = cms.PSet(
22  Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
23  ),
24 
25  # DMR (distribution of median of residuals per module) of Y coordinate (Pixel)
26  TH1DmrYprimePixelModules = cms.PSet(
27  Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
28  )
29 
30 )