Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 hcalRecoAnalyzer = cms.EDAnalyzer("HcalRecHitsValidation",
00004 outputFile = cms.untracked.string('HcalRecHitValidationRelVal.root'),
00005
00006 HBHERecHitCollectionLabel = cms.untracked.InputTag("hbhereco"),
00007 HFRecHitCollectionLabel = cms.untracked.InputTag("hfreco"),
00008 HORecHitCollectionLabel = cms.untracked.InputTag("horeco"),
00009
00010 eventype = cms.untracked.string('multi'),
00011 ecalselector = cms.untracked.string('yes'),
00012 hcalselector = cms.untracked.string('all'),
00013 mc = cms.untracked.string('no')
00014 )
00015
00016 hcalNoiseRates = cms.EDAnalyzer('NoiseRates',
00017 outputFile = cms.untracked.string('NoiseRatesRelVal.root'),
00018 rbxCollName = cms.untracked.InputTag('hcalnoise'),
00019 minRBXEnergy = cms.untracked.double(20.0),
00020 minHitEnergy = cms.untracked.double(1.5)
00021 )