File indexing completed on 2025-02-07 14:24:13
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def Chi2ChargeMeasurementEstimatorESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('Chi2ChargeMeasurementEstimatorESProducer',
0005 MaxChi2 = cms.double(30),
0006 nSigma = cms.double(3),
0007 MaxDisplacement = cms.double(0.5),
0008 MaxSagitta = cms.double(2),
0009 MinimalTolerance = cms.double(0.5),
0010 MinPtForHitRecoveryInGluedDet = cms.double(1000000000000),
0011 ComponentName = cms.string('Chi2Charge'),
0012 pTChargeCutThreshold = cms.double(-1),
0013 clusterChargeCut = cms.PSet(
0014 value = cms.double(1620)
0015 ),
0016 appendToDataLabel = cms.string('')
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod