CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PresampleTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ecalPresampleTask = cms.untracked.PSet(
4  params = cms.untracked.PSet(
5  doPulseMaxCheck = cms.untracked.bool(True),
6  pulseMaxPosition = cms.untracked.int32(5),
7  nSamples = cms.untracked.int32(3)
8  ),
9  MEs = cms.untracked.PSet(
10  Pedestal = cms.untracked.PSet(
11  path = cms.untracked.string('%(subdet)s/%(prefix)sPedestalOnlineTask/Gain12/%(prefix)sPOT pedestal %(sm)s G12'),
12  kind = cms.untracked.string('TProfile2D'),
13  otype = cms.untracked.string('SM'),
14  btype = cms.untracked.string('Crystal'),
15  description = cms.untracked.string('2D distribution of mean presample value.')
16  )
17  )
18 )