File indexing completed on 2024-04-06 12:07:20
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQM.EcalCommon.CommonParams_cfi import *
0004
0005 ecalTestPulseTask = cms.untracked.PSet(
0006 params = cms.untracked.PSet(
0007 MGPAGains = ecaldqmMGPAGains,
0008 MGPAGainsPN = ecaldqmMGPAGainsPN
0009 ),
0010 MEs = cms.untracked.PSet(
0011 PNAmplitude = cms.untracked.PSet(
0012 path = cms.untracked.string('%(subdet)s/%(prefix)sTestPulseTask/PN/Gain%(pngain)s/%(prefix)sTPT PNs amplitude %(sm)s G%(pngain)s'),
0013 otype = cms.untracked.string('SMMEM'),
0014 multi = cms.untracked.PSet(
0015 pngain = ecaldqmMGPAGainsPN
0016 ),
0017 kind = cms.untracked.string('TProfile'),
0018 btype = cms.untracked.string('Crystal'),
0019 description = cms.untracked.string('Test pulse amplitude in the PN diodes.')
0020 ),
0021 Amplitude = cms.untracked.PSet(
0022 path = cms.untracked.string('%(subdet)s/%(prefix)sTestPulseTask/Gain%(gain)s/%(prefix)sTPT amplitude %(sm)s G%(gain)s'),
0023 otype = cms.untracked.string('SM'),
0024 multi = cms.untracked.PSet(
0025 gain = ecaldqmMGPAGains
0026 ),
0027 kind = cms.untracked.string('TProfile2D'),
0028 btype = cms.untracked.string('Crystal'),
0029 description = cms.untracked.string('Test pulse amplitude.')
0030 ),
0031 Shape = cms.untracked.PSet(
0032 multi = cms.untracked.PSet(
0033 gain = ecaldqmMGPAGains
0034 ),
0035 yaxis = cms.untracked.PSet(
0036 high = cms.untracked.double(10.0),
0037 nbins = cms.untracked.int32(10),
0038 low = cms.untracked.double(0.0)
0039 ),
0040 kind = cms.untracked.string('TProfile2D'),
0041 otype = cms.untracked.string('SM'),
0042 btype = cms.untracked.string('SuperCrystal'),
0043 path = cms.untracked.string('%(subdet)s/%(prefix)sTestPulseTask/Gain%(gain)s/%(prefix)sTPT shape %(sm)s G%(gain)s'),
0044 description = cms.untracked.string('Test pulse shape. One slice corresponds to one readout tower (5x5 crystals).')
0045 ),
0046 Occupancy = cms.untracked.PSet(
0047 path = cms.untracked.string('%(subdet)s/%(prefix)sOccupancyTask/%(prefix)sOT test pulse digi occupancy%(suffix)s'),
0048 kind = cms.untracked.string('TH2F'),
0049 otype = cms.untracked.string('Ecal3P'),
0050 btype = cms.untracked.string('SuperCrystal'),
0051 description = cms.untracked.string('Occupancy in test pulse events.')
0052 )
0053 )
0054 )
0055