Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # AlCaPi0BCRecHits producer
0004 alCaPi0BCRecHits = cms.EDProducer("AlCaPi0BasicClusterRecHitsProducer",
0005     pi0BarrelHitCollection = cms.string('pi0EcalRecHitsEB'),
0006     seleMinvMaxPi0 = cms.double(0.2),
0007     gammaCandEtaSize = cms.int32(21),
0008     selePtGammaOne = cms.double(1.0),
0009     ecalRecHitsProducer = cms.string('ecalRecHit'),
0010     islandBCColl = cms.string('islandBarrelBasicClusters'),
0011     VerbosityLevel = cms.string('ERROR'),
0012     gammaCandPhiSize = cms.int32(21),
0013     selePtGammaTwo = cms.double(1.0),
0014     islandBCProd = cms.string('islandBasicClusters'),
0015     selePtPi0 = cms.double(2.5),
0016     barrelHitCollection = cms.string('EcalRecHitsEB'),
0017     seleMinvMinPi0 = cms.double(0.0)
0018 )
0019 
0020