CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalRecHitParam_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalRecoAnalyzer = cms.EDAnalyzer("HcalRecHitsValidation",
4  outputFile = cms.untracked.string('HcalRecHitValidationRelVal.root'),
5 
6  HBHERecHitCollectionLabel = cms.untracked.InputTag("hbhereco"),
7  HFRecHitCollectionLabel = cms.untracked.InputTag("hfreco"),
8  HORecHitCollectionLabel = cms.untracked.InputTag("horeco"),
9 
10  eventype = cms.untracked.string('multi'),
11  ecalselector = cms.untracked.string('yes'),
12  hcalselector = cms.untracked.string('all'),
13  mc = cms.untracked.string('no')
14 )
15 
16 hcalNoiseRates = cms.EDAnalyzer('NoiseRates',
17  outputFile = cms.untracked.string('NoiseRatesRelVal.root'),
18  rbxCollName = cms.untracked.InputTag('hcalnoise'),
19  minRBXEnergy = cms.untracked.double(20.0),
20  minHitEnergy = cms.untracked.double(1.5)
21 )