CMS 3D CMS Logo

TrackerOfflineValidationSummary_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
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  minEntriesPerModuleForDmr = cms.uint32(100),
8 
9  # DMR (distribution of median of residuals per module) of X coordinate (Strip)
10  TH1DmrXprimeStripModules = cms.PSet(
11  # width 2.0 um
12 # Nbinx = cms.int32(500), xmin = cms.double(-0.05), xmax = cms.double(0.05)
13  # width 0.5 um
14  Nbinx = cms.int32(5000), xmin = cms.double(-0.05), xmax = cms.double(0.05)
15  ),
16 
17  # DMR (distribution of median of residuals per module) of Y coordinate (Strip)
18  TH1DmrYprimeStripModules = cms.PSet(
19  Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
20  ),
21 
22  # DMR (distribution of median of residuals per module) of X coordinate (Pixel)
23  TH1DmrXprimePixelModules = cms.PSet(
24 # Nbinx = cms.int32(500), xmin = cms.double(-0.05), xmax = cms.double(0.05)
25  Nbinx = cms.int32(5000), xmin = cms.double(-0.05), xmax = cms.double(0.05)
26  ),
27 
28  # DMR (distribution of median of residuals per module) of Y coordinate (Pixel)
29  TH1DmrYprimePixelModules = cms.PSet(
30 # Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
31  Nbinx = cms.int32(5000), xmin = cms.double(-0.05), xmax = cms.double(0.05)
32  )
33 
34 )