CMS 3D CMS Logo

TrackerOfflineValidationSummary_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from Alignment.OfflineValidation.trackerOfflineValidationSummary_cfi import trackerOfflineValidationSummary as _trackerOfflineValidationSummary
4 
5 TrackerOfflineValidationSummary = _trackerOfflineValidationSummary.clone(
6  moduleDirectoryInOutput = "Alignment/Tracker", # has to be the same as in TrackerOfflineValidation_Dqm_cff
7  useFit = False,
8  stripYDmrs = False, # should be the same as for stripYResiduals in TrackerOfflineValidation_Dqm_cff
9  minEntriesPerModuleForDmr = 100,
10 
11  # DMR (distribution of median of residuals per module) of X coordinate (Strip)
12  # width 2.0 um
13  # Nbinx = cms.int32(500), xmin = cms.double(-0.05), xmax = cms.double(0.05)
14  # width 0.5 um
15  TH1DmrXprimeStripModules = dict(Nbinx = 5000, xmin = -0.05, xmax = 0.05),
16 
17  # DMR (distribution of median of residuals per module) of Y coordinate (Strip)
18  TH1DmrYprimeStripModules = dict(Nbinx = 200, xmin = -0.05, xmax = 0.05),
19 
20  # DMR (distribution of median of residuals per module) of X coordinate (Pixel)
21  # Nbinx = cms.int32(500), xmin = cms.double(-0.05), xmax = cms.double(0.05)
22  TH1DmrXprimePixelModules = dict(Nbinx = 5000, xmin = -0.05, xmax = 0.05),
23 
24  # DMR (distribution of median of residuals per module) of Y coordinate (Pixel)
25  # Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
26  TH1DmrYprimePixelModules = dict(Nbinx = 5000, xmin = -0.05, xmax = 0.05)
27 )