test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PrescalesVetos_cff.py
Go to the documentation of this file.
1 #
2 # WARNING: This file is in the L1T configuration critical path.
3 #
4 # All changes must be explicitly discussed with the L1T offline coordinator.
5 #
6 import FWCore.ParameterSet.Config as cms
7 
8 L1TGlobalPrescalesVetosRcdSource = cms.ESSource("EmptyESSource",
9  recordName = cms.string('L1TGlobalPrescalesVetosRcd'),
10  iovIsRunNotTime = cms.bool(True),
11  firstValid = cms.vuint32(1)
12 )
13 
14 L1TGlobalPrescalesVetos = cms.ESProducer("L1TGlobalPrescalesVetosESProducer",
15  TriggerMenuLuminosity = cms.string('startup'),
16  Verbosity = cms.int32(0),
17  AlgoBxMaskDefault = cms.int32(1),
18  PrescaleXMLFile = cms.string('UGT_BASE_RS_PRESCALES_v11.xml'),
19  AlgoBxMaskXMLFile = cms.string('UGT_BASE_RS_ALGOBX_MASK_V1.xml'),
20  FinOrMaskXMLFile = cms.string('UGT_BASE_RS_FINOR_MASK_v17.xml'),
21  VetoMaskXMLFile = cms.string('UGT_BASE_RS_VETO_MASK_v1.xml'),
22 
23 )
24 
25