Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ecalPedHists = cms.EDAnalyzer("EcalPedHists",
0004     # sepecify list of samples to use
0005     listSamples = cms.untracked.vint32(1, 2, 3),
0006     EEdigiCollection = cms.InputTag("ecalEBunpacker","eeDigis"),
0007     EBdigiCollection = cms.InputTag("ecalEBunpacker","ebDigis"),
0008     # selection on EB+- numbering
0009     listEBs = cms.untracked.vstring(),
0010     # specify list of channels to be dumped
0011     # outputs all channels if not specified
0012     listChannels = cms.untracked.vint32(1, 2, 3, 4, 5, 
0013         6, 7, 8, 9, 10),
0014     fileName = cms.untracked.string('ecalPedHists'),
0015     # selection on FED number (601...654); -1 selects all 
0016     listFEDs = cms.untracked.vint32(-1),
0017     headerProducer = cms.InputTag("ecalEBunpacker")
0018 )
0019 
0020