CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Alignment/OfflineValidation/python/TrackerOfflineValidationSummary_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackerOfflineValidationSummary = cms.EDAnalyzer("TrackerOfflineValidationSummary",
00004    moduleDirectoryInOutput   = cms.string("Alignment/Tracker"),  # has to be the same as in TrackerOfflineValidation_Dqm_cff
00005    useFit                    = cms.bool(False),
00006    stripYDmrs                = cms.bool(False),  # should be the same as for stripYResiduals in TrackerOfflineValidation_Dqm_cff
00007    removeModuleLevelHists    = cms.bool(False),  # Remove module level hists after extracting the necessary information
00008    minEntriesPerModuleForDmr = cms.uint32(100),
00009    
00010    # DMR (distribution of median of residuals per module) of X coordinate (Strip)
00011    TH1DmrXprimeStripModules = cms.PSet(
00012      Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
00013    ),
00014    
00015    # DMR (distribution of median of residuals per module) of Y coordinate (Strip)
00016    TH1DmrYprimeStripModules = cms.PSet(
00017      Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
00018    ),
00019    
00020    # DMR (distribution of median of residuals per module) of X coordinate (Pixel)
00021    TH1DmrXprimePixelModules = cms.PSet(
00022      Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
00023    ),
00024    
00025    # DMR (distribution of median of residuals per module) of Y coordinate (Pixel)
00026    TH1DmrYprimePixelModules = cms.PSet(
00027      Nbinx = cms.int32(200), xmin = cms.double(-0.05), xmax = cms.double(0.05)
00028    )
00029    
00030 )