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  HitMapAllByLumi = cms.untracked.PSet(
22  path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sOT%(suffix)s energy summary by lumi'), # In SummaryClient for historical reasons
23  kind = cms.untracked.string('TProfile2D'),
24  zaxis = cms.untracked.PSet(
25  title = cms.untracked.string('energy (GeV)')
26  ),
27  otype = cms.untracked.string('Ecal3P'),
28  btype = cms.untracked.string('SuperCrystal'),
29  description = cms.untracked.string('2D distribution of the mean tower rec hit energy for this lumisection. The mean is the total tower rechit energy over the number of rechits in the tower.')
30  ),
31  HitAll = cms.untracked.PSet(
32  path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT rec hit spectrum%(suffix)s'),
33  kind = cms.untracked.string('TH1F'),
34  otype = cms.untracked.string('Ecal3P'),
35  xaxis = cms.untracked.PSet(
36  high = cms.untracked.double(20.0),
37  nbins = cms.untracked.int32(100),
38  low = cms.untracked.double(0.0),
39  title = cms.untracked.string('energy (GeV)')
40  ),
41  btype = cms.untracked.string('User'),
42  description = cms.untracked.string('Rec hit energy distribution.')
43  ),
44  Hit = cms.untracked.PSet(
45  path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT energy spectrum %(sm)s'),
46  kind = cms.untracked.string('TH1F'),
47  otype = cms.untracked.string('SM'),
48  xaxis = cms.untracked.PSet(
49  high = cms.untracked.double(20.0),
50  nbins = cms.untracked.int32(100),
51  low = cms.untracked.double(0.0),
52  title = cms.untracked.string('energy (GeV)')
53  ),
54  btype = cms.untracked.string('User'),
55  description = cms.untracked.string('Rec hit energy distribution.')
56  ),
57  HitMap = cms.untracked.PSet(
58  path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT rec hit energy %(sm)s'),
59  kind = cms.untracked.string('TProfile2D'),
60  zaxis = cms.untracked.PSet(
61  title = cms.untracked.string('energy (GeV)')
62  ),
63  otype = cms.untracked.string('SM'),
64  btype = cms.untracked.string('Crystal'),
65  description = cms.untracked.string('2D distribution of the mean rec hit energy.')
66  )
67  )
68 )
69