CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtResidualCalibration_cfi.py
Go to the documentation of this file.
2 
3 dtSegmentSelectionResiduals = cms.PSet(
4  checkNoisyChannels = cms.bool(False),
5  minHitsPhi = cms.int32(7),
6  #minHitsPhi = cms.int32(5),
7  minHitsZ = cms.int32(4),
8  #minHitsZ = cms.int32(3),
9  maxChi2 = cms.double(1000.0),
10  maxAnglePhi = cms.double(25.),
11  maxAngleZ = cms.double(999.)
12 )
13 
14 dtResidualCalibration = cms.EDAnalyzer("DTResidualCalibration",
15  # Segment selection
16  dtSegmentSelectionResiduals,
17  segment4DLabel = cms.InputTag('dt4DSegments'),
18  rootBaseDir = cms.untracked.string('DTResiduals'),
19  rootFileName = cms.untracked.string('residuals.root'),
20  detailedAnalysis = cms.untracked.bool(False)
21  #detailedAnalysis = cms.untracked.bool(True)
22 )