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 # AlCaPi0RecHits producer
0004 alCaPi0RecHits = cms.EDProducer("AlCaPi0RecHitsProducer",
0005     pi0BarrelHitCollection = cms.string('pi0EcalRecHitsEB'),
0006     seleNRHMax = cms.int32(1000),
0007     clusPhiSize = cms.int32(3),
0008     seleMinvMaxPi0 = cms.double(0.2),
0009     gammaCandEtaSize = cms.int32(21),
0010     selePtGammaOne = cms.double(1.0),
0011     ecalRecHitsProducer = cms.string('ecalRecHit'),
0012     clusEtaSize = cms.int32(3),
0013     VerbosityLevel = cms.string('ERROR'),
0014     gammaCandPhiSize = cms.int32(21),
0015     selePtGammaTwo = cms.double(1.0),
0016     selePtPi0 = cms.double(2.5),
0017     seleXtalMinEnergy = cms.double(0.0),
0018     barrelHitCollection = cms.string('EcalRecHitsEB'),
0019     seleMinvMinPi0 = cms.double(0.0),
0020     clusSeedThr = cms.double(0.5)
0021 )
0022 
0023