2 import FWCore.ParameterSet.Config
as cms
5 led_calibration_channels_tuple = {
60 ledCalibrationChannels = cms.VPSet()
61 for subdet
in [
"HB",
"HE",
"HO",
"HF"]:
62 subdet_channels = cms.untracked.PSet(
63 ieta = cms.untracked.vint32(),
64 iphi = cms.untracked.vint32(),
65 depth = cms.untracked.vint32()
67 for channel
in led_calibration_channels_tuple[subdet]:
68 subdet_channels.ieta.append(channel[0])
69 subdet_channels.iphi.append(channel[1])
70 subdet_channels.depth.append(channel[2])
71 ledCalibrationChannels.append(subdet_channels)