CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ecalPnGraphs_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ecalPnGraphs = cms.EDAnalyzer("EcalPnGraphs",
4  # requested EBs
5  requestedEbs = cms.untracked.vstring('none'),
6  # length of the line centered on listPns containing the Pns you want to see
7  # needs to be an odd number
8  numPn = cms.untracked.int32(9),
9  fileName = cms.untracked.string('test.root'),
10  digiProducer = cms.string('ecalEBunpacker'),
11  # requested FEDs
12  requestedFeds = cms.untracked.vint32(-1),
13  # list of Pns to be graphed around
14  listPns = cms.untracked.vint32(5)
15 )
16 
17