test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalBxOrbitNumberGrapher_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ecalBxOrbitNumberGrapher = cms.EDAnalyzer("EcalBxOrbitNumberGrapher",
4 
5  EBRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
6  EERecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
7 
8  RawDigis = cms.string('ecalEBunpacker'),
9 
10  # parameter to specify histogram maxmimum range
11  histogramMaxRange = cms.untracked.double(200.0),
12 
13  # parameter to specify histogram minimum range
14  histogramMinRange = cms.untracked.double(-10.0),
15 
16  # parameter for the name of the output root file with TH1F
17  fileName = cms.untracked.string('bxOrbitHists')
18 
19 )