Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ecalRecHitsFilter = cms.EDFilter("EcalRecHitsFilter",
0004     
0005     EcalRecHitCollectionEB = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0006     EcalRecHitCollectionEE = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0007 
0008     # parameter for the name of the output root file with TH1F
0009     fileName = cms.untracked.string('ecalRecHitsFilterHists'),
0010     NumberXtalsThreshold = cms.untracked.int32(20),
0011     energycut = cms.untracked.double(0.2)
0012 
0013 )