Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import FWCore.ParameterSet.Config as cms

hltLST = cms.EDProducer('LSTProducer@alpaka',
    pixelSeedInput = cms.InputTag('hltPixelSeedInputLST'),
    phase2OTHitsInput = cms.InputTag('hltPhase2OTHitsInputLST'),
    verbose = cms.bool(False),
    nopLSDupClean = cms.bool(False),
    tcpLSTriplets = cms.bool(False),
    mightGet = cms.optional.untracked.vstring,
    alpaka = cms.untracked.PSet(
        backend = cms.untracked.string('')
    )
)

from Configuration.ProcessModifiers.trackingLST_cff import trackingLST
from Configuration.ProcessModifiers.seedingLST_cff import seedingLST
(seedingLST & trackingLST).toModify(hltLST, nopLSDupClean = True,
                                            tcpLSTriplets = True )