File indexing completed on 2025-02-20 03:45:10
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 template = cms.PSetTemplate(
0018 seedingLayers = cms.string('BPix1+BPix2+BPix3'),
0019 cut = cms.double(0.00125)
0020 )
0021 ),
0022 CAPhiCut_byTriplets = cms.VPSet(
0023 cms.PSet(
0024 cut = cms.double(-1),
0025 seedingLayers = cms.string('')
0026 ),
0027 template = cms.PSetTemplate(
0028 seedingLayers = cms.string('BPix1+BPix2+BPix3'),
0029 cut = cms.double(0.00125)
0030 )
0031 ),
0032 CAHardPtCut = cms.double(0),
0033 CAOnlyOneLastHitPerLayerFilter = cms.optional.bool,
0034 maxChi2 = cms.PSet(
0035 pt1 = cms.double(0.2),
0036 pt2 = cms.double(1.5),
0037 value1 = cms.double(500),
0038 value2 = cms.double(50),
0039 enabled = cms.bool(True)
0040 ),
0041 SeedComparitorPSet = cms.PSet(
0042 ComponentName = cms.string('none')
0043 ),
0044 mightGet = cms.optional.untracked.vstring
0045 )
0046 for a in args:
0047 mod.update_(a)
0048 mod.update_(kwargs)
0049 return mod