Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # trigger mask: disable L1A result if the corresponding algorithm trigger
0004 # has bit value equal to 1 for the respective DAQ partition
0005 
0006 
0007 
0008 l1GtTriggerMaskVetoAlgoTrig = cms.ESProducer("L1GtTriggerMaskVetoAlgoTrigTrivialProducer",
0009     TriggerMask = cms.vuint32(
0010            0x00,
0011            0x00,
0012            0x00,
0013            0x00,
0014            0x00,
0015            0x00,
0016            0x00,
0017            0x00,
0018            0x00,
0019            0x00,
0020            0x00,
0021            0x00,
0022            0x00,
0023            0x00,
0024            0x00,
0025            0x00,
0026            0x00,
0027            0x00,
0028            0x00,
0029            0x00,
0030            0x00,
0031            0x00,
0032            0x00,
0033            0x00,
0034            0x00,
0035            0x00,
0036            0x00,
0037            0x00,
0038            0x00,
0039            0x00,
0040            0x00,
0041            0x00,
0042            0x00,
0043            0x00,
0044            0x00,
0045            0x00,
0046            0x00,
0047            0x00,
0048            0x00,
0049            0x00,
0050            0x00,
0051            0x00,
0052            0x00,
0053            0x00,
0054            0x00,
0055            0x00,
0056            0x00,
0057            0x00,
0058            0x00,
0059            0x00,
0060            0x00,
0061            0x00,
0062            0x00,
0063            0x00,
0064            0x00,
0065            0x00,
0066            0x00,
0067            0x00,
0068            0x00,
0069            0x00,
0070            0x00,
0071            0x00,
0072            0x00,
0073            0x00,
0074            0x00,
0075            0x00,
0076            0x00,
0077            0x00,
0078            0x00,
0079            0x00,
0080            0x00,
0081            0x00,
0082            0x00,
0083            0x00,
0084            0x00,
0085            0x00,
0086            0x00,
0087            0x00,
0088            0x00,
0089            0x00,
0090            0x00,
0091            0x00,
0092            0x00,
0093            0x00,
0094            0x00,
0095            0x00,
0096            0x00,
0097            0x00,
0098            0x00,
0099            0x00,
0100            0x00,
0101            0x00,
0102            0x00,
0103            0x00,
0104            0x00,
0105            0x00,
0106            0x00,
0107            0x00,
0108            0x00,
0109            0x00,
0110            0x00,
0111            0x00,
0112            0x00,
0113            0x00,
0114            0x00,
0115            0x00,
0116            0x00,
0117            0x00,
0118            0x00,
0119            0x00,
0120            0x00,
0121            0x00,
0122            0x00,
0123            0x00,
0124            0x00,
0125            0x00,
0126            0x00,
0127            0x00,
0128            0x00,
0129            0x00,
0130            0x00,
0131            0x00,
0132            0x00,
0133            0x00,
0134            0x00,
0135            0x00,
0136            0x00,
0137            0x00
0138            )
0139 )
0140 
0141