CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/CaloOnlineTools/EcalTools/python/ecalBxOrbitNumberGrapher_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 EcalBxOrbitNumberGrapher = cms.EDAnalyzer("EcalBxOrbitNumberGrapher",
00004 
00005     EBRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00006     EERecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00007 
00008     RawDigis = cms.string('ecalEBunpacker'),
00009 
00010     # parameter to specify histogram maxmimum range
00011     histogramMaxRange = cms.untracked.double(200.0),
00012 
00013     # parameter to specify histogram minimum range
00014     histogramMinRange = cms.untracked.double(-10.0),
00015 
00016     # parameter for the name of the output root file with TH1F
00017     fileName = cms.untracked.string('bxOrbitHists')
00018 
00019 )