Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:17

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def Chi2MeasurementEstimatorESProducer(*args, **kwargs):
0004   mod = cms.ESProducer('Chi2MeasurementEstimatorESProducer',
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('Chi2'),
0012     appendToDataLabel = cms.string('')
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod