CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTCombinatorialPatternReco2DAlgo_NoDrift_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 DTCombinatorialPatternReco algorithm,
6 # which is the concrete algo for the DTRecSegment2D production.
7 # The linear Drift algos is used.
8 #
9 # The reconstruction algo and its parameter set
11 DTCombinatorialPatternReco2DAlgo_NoDrift_CosmicData = cms.PSet(
12  Reco2DAlgoConfig = cms.PSet(
13  # Parameters for the updator
14  # this is the RecHit1D algo!!
15  DTNoDriftAlgo_CosmicData,
16  segmCleanerMode = cms.int32(1),
17  AlphaMaxPhi = cms.double(100.0),
18  MaxAllowedHits = cms.uint32(50),
19  # Parameters for the cleaner
20  nSharedHitsMax = cms.int32(2),
21  AlphaMaxTheta = cms.double(100.0),
22  debug = cms.untracked.bool(False),
23  nUnSharedHitsMin = cms.int32(2),
24  # Parameters for T0 fit segment in the Updator and
25  performT0SegCorrection = cms.bool(False),
26  performT0_vdriftSegCorrection = cms.bool(False),
27  hit_afterT0_resolution = cms.double(0.03)
28  ),
29  Reco2DAlgoName = cms.string('DTCombinatorialPatternReco')
30 )
31