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 technical trigger
0004 # has bit value equal to 1 for the respective DAQ partition
0005 
0006 
0007 
0008 l1GtTriggerMaskVetoTechTrig = cms.ESProducer("L1GtTriggerMaskVetoTechTrigTrivialProducer",
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            )
0075 )
0076 
0077