CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_CosmicData_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # This is the include file with the parameters
5 # for the DTMeantimerPatternReco algorithm,
6 # which is the concrete algo for the DTRecSegment2D production.
7 # The linear DriftFromDB algos is used.
8 #
9 # The reconstruction algo and its parameter set
11 DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_CosmicData = cms.PSet(
12  Reco2DAlgoConfig = cms.PSet(
13  # Parameters for the updator
14  # this is the RecHit1D algo!!
15  DTLinearDriftFromDBAlgo_CosmicData,
16  AlphaMaxPhi = cms.double(100.0),
17  AlphaMaxTheta = cms.double(100.),
18  MaxChi2 = cms.double(4.0),
19  MaxAllowedHits = cms.uint32(50),
20  intime_cut = cms.double(-1.),
21  debug = cms.untracked.bool(False),
22 
23  # Parameters for the cleaner
24  segmCleanerMode = cms.int32(2),
25  nSharedHitsMax = cms.int32(2),
26  nUnSharedHitsMin = cms.int32(2),
27 
28  # Parameters for T0 fit segment in the Updator
29  performT0_vdriftSegCorrection = cms.bool(False),
30  hit_afterT0_resolution = cms.double(0.03),
31  performT0SegCorrection = cms.bool(False),
32  perform_delta_rejecting = cms.bool(False)
33  ),
34  Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
35 )
36