1 import FWCore.ParameterSet.Config
as cms
5 ecalEnergyTask = cms.untracked.PSet(
6 params = cms.untracked.PSet(
8 isPhysicsRun = cms.untracked.bool(
True)
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'),
13 kind = cms.untracked.string(
'TProfile2D'),
14 zaxis = cms.untracked.PSet(
15 title = cms.untracked.string(
'energy (GeV)')
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.')
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)')
31 btype = cms.untracked.string(
'User'),
32 description = cms.untracked.string(
'Rec hit energy distribution.')
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)')
44 btype = cms.untracked.string(
'User'),
45 description = cms.untracked.string(
'Rec hit energy distribution.')
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)')
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.')