Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #
0002 # WARNING: This file is in the L1T configuration critical path.
0003 #
0004 # All changes must be explicitly discussed with the L1T offline coordinator.
0005 #
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 L1TGlobalPrescalesVetosRcdSource = cms.ESSource("EmptyESSource",
0009     recordName = cms.string('L1TGlobalPrescalesVetosRcd'),
0010     iovIsRunNotTime = cms.bool(True),
0011     firstValid = cms.vuint32(1)
0012 )
0013 
0014 L1TGlobalPrescalesVetos = cms.ESProducer("L1TGlobalPrescalesVetosESProducer",
0015     TriggerMenuLuminosity = cms.string('startup'),
0016     Verbosity = cms.int32(0),
0017     AlgoBxMaskDefault = cms.int32(1),
0018     PrescaleXMLFile = cms.string('UGT_BASE_RS_PRESCALES_L1MenuCollisions2022_v1_1_0.xml'),
0019     AlgoBxMaskXMLFile = cms.string('UGT_BASE_RS_ALGOBX_MASK_L1MenuCollisions2022_v1_1_0.xml'),
0020     FinOrMaskXMLFile = cms.string('UGT_BASE_RS_FINOR_MASK_L1MenuCollisions2022_v1_1_0.xml'),
0021     VetoMaskXMLFile = cms.string('UGT_BASE_RS_VETO_MASK_L1MenuCollisions2022_v1_1_0.xml'),
0022 )
0023 
0024