Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 threshS9 = 0.125
0004 
0005 ecalEnergyTask = cms.untracked.PSet(
0006     params = cms.untracked.PSet(
0007         #    threshS9 = cms.untracked.double(0.125),
0008         isPhysicsRun = cms.untracked.bool(True)
0009     ),
0010     MEs = cms.untracked.PSet(
0011         HitMapAll = cms.untracked.PSet(
0012             path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sOT%(suffix)s energy summary'), # In SummaryClient for historical reasons
0013             kind = cms.untracked.string('TProfile2D'),
0014             zaxis = cms.untracked.PSet(
0015                 title = cms.untracked.string('energy (GeV)')
0016             ),
0017             otype = cms.untracked.string('Ecal3P'),
0018             btype = cms.untracked.string('SuperCrystal'),
0019             description = cms.untracked.string('2D distribution of the mean rec hit energy.')
0020         ),
0021         HitMapAllByLumi = cms.untracked.PSet(
0022             path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sOT%(suffix)s energy summary by lumi'), # In SummaryClient for historical reasons
0023             kind = cms.untracked.string('TProfile2D'),
0024             zaxis = cms.untracked.PSet(
0025                 title = cms.untracked.string('energy (GeV)')
0026             ),
0027             otype = cms.untracked.string('Ecal3P'),
0028             btype = cms.untracked.string('SuperCrystal'),
0029             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.')
0030         ),
0031         HitAll = cms.untracked.PSet(
0032             path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT rec hit spectrum%(suffix)s'),
0033             kind = cms.untracked.string('TH1F'),
0034             otype = cms.untracked.string('Ecal3P'),
0035             xaxis = cms.untracked.PSet(
0036                 high = cms.untracked.double(20.0),
0037                 nbins = cms.untracked.int32(100),
0038                 low = cms.untracked.double(0.0),
0039                 title = cms.untracked.string('energy (GeV)')
0040             ),
0041             btype = cms.untracked.string('User'),
0042             description = cms.untracked.string('Rec hit energy distribution.')
0043         ),
0044         Hit = cms.untracked.PSet(
0045             path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT energy spectrum %(sm)s'),
0046             kind = cms.untracked.string('TH1F'),
0047             otype = cms.untracked.string('SM'),
0048             xaxis = cms.untracked.PSet(
0049                 high = cms.untracked.double(20.0),
0050                 nbins = cms.untracked.int32(100),
0051                 low = cms.untracked.double(0.0),
0052                 title = cms.untracked.string('energy (GeV)')
0053             ),
0054             btype = cms.untracked.string('User'),
0055             description = cms.untracked.string('Rec hit energy distribution.')
0056         ),
0057         HitMap = cms.untracked.PSet(
0058             path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT rec hit energy %(sm)s'),
0059             kind = cms.untracked.string('TProfile2D'),
0060             zaxis = cms.untracked.PSet(
0061                 title = cms.untracked.string('energy (GeV)')
0062             ),
0063             otype = cms.untracked.string('SM'),
0064             btype = cms.untracked.string('Crystal'),
0065             description = cms.untracked.string('2D distribution of the mean rec hit energy.')
0066         )
0067     )
0068 )
0069