CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalPedHists_cfi.py
Go to the documentation of this file.
2 
3 ecalPedHists = cms.EDAnalyzer("EcalPedHists",
4  # sepecify list of samples to use
5  listSamples = cms.untracked.vint32(1, 2, 3),
6  EEdigiCollection = cms.InputTag("ecalEBunpacker","eeDigis"),
7  EBdigiCollection = cms.InputTag("ecalEBunpacker","ebDigis"),
8  # selection on EB+- numbering
9  listEBs = cms.untracked.vstring(),
10  # specify list of channels to be dumped
11  # outputs all channels if not specified
12  listChannels = cms.untracked.vint32(1, 2, 3, 4, 5,
13  6, 7, 8, 9, 10),
14  fileName = cms.untracked.string('ecalPedHists'),
15  # selection on FED number (601...654); -1 selects all
16  listFEDs = cms.untracked.vint32(-1),
17  headerProducer = cms.InputTag("ecalEBunpacker")
18 )
19 
20