Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:12:12

0001 
0002 import FWCore.ParameterSet.Config as cms
0003 
0004 simGtExtFakeProd = cms.EDProducer("L1TExtCondProducer",
0005                                   bxFirst = cms.int32(-2),
0006                                   bxLast = cms.int32(2),
0007                                   setBptxAND = cms.bool(True),
0008                                   setBptxPlus = cms.bool(True),
0009                                   setBptxMinus = cms.bool(True),
0010                                   setBptxOR = cms.bool(True),
0011                                   tcdsRecordLabel= cms.InputTag("")
0012                                   ## tcdsRecordLabel= cms.InputTag("tcdsDigis","tcdsRecord") ## use this tag to trigger fetching the tcds record and set the Prefire veto bit
0013 )
0014 
0015 simGtExtUnprefireable = simGtExtFakeProd.clone(
0016       tcdsRecordLabel = cms.InputTag("tcdsDigis","tcdsRecord")
0017 )
0018