File indexing completed on 2023-11-06 23:38:08
0001 import FWCore.ParameterSet.Config as cms
0002
0003 Chi2MeasurementEstimatorDefault = cms.ESProducer('Chi2MeasurementEstimatorESProducer',
0004 MaxChi2 = cms.double(30),
0005 nSigma = cms.double(3),
0006 MaxDisplacement = cms.double(0.5),
0007 MaxSagitta = cms.double(2),
0008 MinimalTolerance = cms.double(0.5),
0009 MinPtForHitRecoveryInGluedDet = cms.double(1000000000000),
0010 ComponentName = cms.string('Chi2'),
0011 appendToDataLabel = cms.string('')
0012 )