File indexing completed on 2024-04-06 12:25:10
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 mipVariable = cms.PSet(
0005
0006 ComponentName = cms.string('mipVariable'),
0007
0008 barrelEcalRecHitCollection = cms.InputTag('ecalRecHit:EcalRecHitsEB'),
0009 endcapEcalRecHitCollection = cms.InputTag('ecalRecHit:EcalRecHitsEE'),
0010
0011
0012
0013 YRangeFit = cms.double(7.0),
0014 XRangeFit = cms.double(180.0),
0015 ResidualWidth = cms.double(0.23),
0016 HaloDiscThreshold = cms.double(70.0)
0017 )
0018
0019