Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 dtSegmentSelectionResiduals = cms.PSet(
00004 checkNoisyChannels = cms.bool(False),
00005 minHitsPhi = cms.int32(7),
00006
00007 minHitsZ = cms.int32(4),
00008
00009 maxChi2 = cms.double(1000.0),
00010 maxAnglePhi = cms.double(25.),
00011 maxAngleZ = cms.double(999.)
00012 )
00013
00014 DTResidualCalibration = cms.EDAnalyzer("DTResidualCalibration",
00015
00016 dtSegmentSelectionResiduals,
00017 segment4DLabel = cms.InputTag('dt4DSegments'),
00018 rootBaseDir = cms.untracked.string('DTResiduals'),
00019 rootFileName = cms.untracked.string('residuals.root'),
00020 detailedAnalysis = cms.untracked.bool(False)
00021
00022 )