Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def CAHitQuadrupletEDProducer(*args, **kwargs):
0004   mod = cms.EDProducer('CAHitQuadrupletEDProducer',
0005     doublets = cms.InputTag('hitPairEDProducer'),
0006     extraHitRPhitolerance = cms.double(0.1),
0007     fitFastCircle = cms.bool(False),
0008     fitFastCircleChi2Cut = cms.bool(False),
0009     useBendingCorrection = cms.bool(False),
0010     CAThetaCut = cms.double(0.00125),
0011     CAPhiCut = cms.double(10),
0012     CAThetaCut_byTriplets = cms.VPSet(
0013       cms.PSet(
0014         cut = cms.double(-1),
0015         seedingLayers = cms.string('')
0016       )
0017     ),
0018     CAPhiCut_byTriplets = cms.VPSet(
0019       cms.PSet(
0020         cut = cms.double(-1),
0021         seedingLayers = cms.string('')
0022       )
0023     ),
0024     CAHardPtCut = cms.double(0),
0025     CAOnlyOneLastHitPerLayerFilter = cms.optional.bool,
0026     maxChi2 = cms.PSet(
0027       pt1 = cms.double(0.2),
0028       pt2 = cms.double(1.5),
0029       value1 = cms.double(500),
0030       value2 = cms.double(50),
0031       enabled = cms.bool(True)
0032     ),
0033     SeedComparitorPSet = cms.PSet(
0034       ComponentName = cms.string('none')
0035     ),
0036     mightGet = cms.optional.untracked.vstring
0037   )
0038   for a in args:
0039     mod.update_(a)
0040   mod.update_(kwargs)
0041   return mod