Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # 
0004 # This is the include file with the parameters
0005 # for the DTCombinatorialPatternReco algorithm,
0006 # which is the concrete algo for the DTRecSegment4D production.
0007 # The Parametrized Drift algos is used.
0008 #
0009 # this is the RecSegment2D algo include!
0010 from RecoLocalMuon.DTSegment.DTCombinatorialPatternReco2DAlgo_LinearDrift_cfi import *
0011 # this is the RecHit1D algo include!
0012 from RecoLocalMuon.DTRecHit.DTLinearDriftAlgo_cfi import *
0013 DTCombinatorialPatternReco4DAlgo_LinearDrift = cms.PSet(
0014     Reco4DAlgoName = cms.string('DTCombinatorialPatternReco4D'),
0015     Reco4DAlgoConfig = cms.PSet(
0016         # Parameters for the updator
0017         # this is the RecHit1D algo!!
0018         DTLinearDriftAlgo,
0019         # this are the RecSegment2D algo parameters!
0020         DTCombinatorialPatternReco2DAlgo_LinearDrift,
0021         debug = cms.untracked.bool(False),
0022         nUnSharedHitsMin = cms.int32(2),
0023 
0024         # the input type. 
0025         # If true the instructions in setDTRecSegment2DContainer will be schipped and the 
0026         # theta segment will be recomputed from the 1D rechits
0027         # If false the theta segment will be taken from the Event. Caveat: in this case the
0028         # event must contain the 2D segments!
0029         AllDTRecHits = cms.bool(True),
0030 
0031         # Parameters for  T0 fit segment in the Updator 
0032         performT0SegCorrection = cms.bool(False),
0033         hit_afterT0_resolution = cms.double(0.03),
0034         performT0_vdriftSegCorrection = cms.bool(False)
0035     )
0036 )
0037