Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 l1EmulatorErrorFlagClient = DQMEDHarvester("L1EmulatorErrorFlagClient",
0005     #
0006     # for each L1 system, give:
0007     #     - SystemLabel:  system label
0008     #     - HwValLabel:   system label as used in hardware validation package 
0009     #                     (the package producing the ErrorFlag histogram)
0010     #     - SystemMask:   system mask: if 1, the system is masked in the summary plot
0011     #     - SystemFolder: the folder where the ErrorFlag histogram is looked for
0012     #
0013     # the position in the parameter set gives, in reverse order, the position in the reportSummaryMap
0014     # in the emulator column (left column)
0015     L1Systems = cms.VPSet(
0016                     cms.PSet(
0017                         SystemLabel = cms.string("ECAL"),
0018                         HwValLabel = cms.string("ETP"),
0019                         SystemMask  = cms.uint32(1),
0020                         SystemFolder = cms.string("")
0021                         ),
0022                     cms.PSet(
0023                         SystemLabel = cms.string("HCAL"),
0024                         HwValLabel = cms.string("HTP"),
0025                         SystemMask  = cms.uint32(1),
0026                         SystemFolder = cms.string("")
0027                         ),
0028                     cms.PSet(
0029                         SystemLabel = cms.string("RCT"),
0030                         HwValLabel = cms.string("RCT"),
0031                         SystemMask  = cms.uint32(0),
0032                         SystemFolder = cms.string("")
0033                         ),
0034                     cms.PSet(
0035                         SystemLabel = cms.string("Stage1Layer2"),
0036                         HwValLabel = cms.string("Stage1Layer2"),
0037                         SystemMask  = cms.uint32(0),
0038                         SystemFolder = cms.string("")
0039                         ),
0040                     cms.PSet(
0041                         SystemLabel = cms.string("DTTF"),
0042                         HwValLabel = cms.string("DTF"),
0043                         SystemMask  = cms.uint32(0),
0044                         SystemFolder = cms.string("")
0045                         ),
0046                     cms.PSet(
0047                         SystemLabel = cms.string("DTTPG"),
0048                         HwValLabel = cms.string("DTP"),
0049                         SystemMask  = cms.uint32(1),
0050                         SystemFolder = cms.string("")
0051                         ),
0052                     cms.PSet(
0053                         SystemLabel = cms.string("CSCTF"),
0054                         HwValLabel = cms.string("CTF"),
0055                         SystemMask  = cms.uint32(1),
0056                         SystemFolder = cms.string("")
0057                         ),
0058                     cms.PSet(
0059                         SystemLabel = cms.string("CSCTPG"),
0060                         HwValLabel = cms.string("CTP"),
0061                         SystemMask  = cms.uint32(1),
0062                         SystemFolder = cms.string("")
0063                         ),
0064                     cms.PSet(
0065                         SystemLabel = cms.string("RPC"),
0066                         HwValLabel = cms.string("RPC"),
0067                         SystemMask  = cms.uint32(0),
0068                         SystemFolder = cms.string("")
0069                         ),
0070                     cms.PSet(
0071                         SystemLabel = cms.string("GMT"),
0072                         HwValLabel = cms.string("GMT"),
0073                         SystemMask  = cms.uint32(0),
0074                         SystemFolder = cms.string("")
0075                         ),
0076                     cms.PSet(
0077                         SystemLabel = cms.string("GT"),
0078                         HwValLabel = cms.string("GT"),
0079                         SystemMask  = cms.uint32(1),
0080                         SystemFolder = cms.string("L1TEMU/Stage1GTexpert")
0081                         )
0082                         
0083                      )
0084 )