CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EnergyTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 threshS9 = 0.125
4 
5 ecalEnergyTask = cms.untracked.PSet(
6  params = cms.untracked.PSet(
7  # threshS9 = cms.untracked.double(0.125),
8  isPhysicsRun = cms.untracked.bool(True)
9  ),
10  MEs = cms.untracked.PSet(
11  HitMapAll = cms.untracked.PSet(
12  path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sOT%(suffix)s energy summary'), # In SummaryClient for historical reasons
13  kind = cms.untracked.string('TProfile2D'),
14  zaxis = cms.untracked.PSet(
15  title = cms.untracked.string('energy (GeV)')
16  ),
17  otype = cms.untracked.string('Ecal3P'),
18  btype = cms.untracked.string('SuperCrystal'),
19  description = cms.untracked.string('2D distribution of the mean rec hit energy.')
20  ),
21  HitAll = cms.untracked.PSet(
22  path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT rec hit spectrum%(suffix)s'),
23  kind = cms.untracked.string('TH1F'),
24  otype = cms.untracked.string('Ecal3P'),
25  xaxis = cms.untracked.PSet(
26  high = cms.untracked.double(20.0),
27  nbins = cms.untracked.int32(100),
28  low = cms.untracked.double(0.0),
29  title = cms.untracked.string('energy (GeV)')
30  ),
31  btype = cms.untracked.string('User'),
32  description = cms.untracked.string('Rec hit energy distribution.')
33  ),
34  Hit = cms.untracked.PSet(
35  path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT energy spectrum %(sm)s'),
36  kind = cms.untracked.string('TH1F'),
37  otype = cms.untracked.string('SM'),
38  xaxis = cms.untracked.PSet(
39  high = cms.untracked.double(20.0),
40  nbins = cms.untracked.int32(100),
41  low = cms.untracked.double(0.0),
42  title = cms.untracked.string('energy (GeV)')
43  ),
44  btype = cms.untracked.string('User'),
45  description = cms.untracked.string('Rec hit energy distribution.')
46  ),
47  HitMap = cms.untracked.PSet(
48  path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT rec hit energy %(sm)s'),
49  kind = cms.untracked.string('TProfile2D'),
50  zaxis = cms.untracked.PSet(
51  title = cms.untracked.string('energy (GeV)')
52  ),
53  otype = cms.untracked.string('SM'),
54  btype = cms.untracked.string('Crystal'),
55  description = cms.untracked.string('2D distribution of the mean rec hit energy.')
56  )
57  )
58 )
59