Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-05 02:46:42

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ecalIsolPartProd = cms.EDProducer('EcalIsolatedParticleCandidateProducer',
0004   ECHitEnergyThreshold = cms.double(0.05),
0005   L1eTauJetsSource = cms.InputTag('l1extraParticles', 'Tau'),
0006   L1GTSeedLabel = cms.InputTag('l1sIsolTrack'),
0007   EBrecHitCollectionLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0008   EErecHitCollectionLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0009   ECHitCountEnergyThreshold = cms.double(0.5),
0010   EcalInnerConeSize = cms.double(0.3),
0011   EcalOuterConeSize = cms.double(0.7),
0012   mightGet = cms.optional.untracked.vstring
0013 )