1
2
3
4
5
6
7
8
9
10
11
12
|
import FWCore.ParameterSet.Config as cms
def _addProcessPixelCPEFastParamsPhase2(process):
process.hltESPPixelCPEFastParamsPhase2 = cms.ESProducer('PixelCPEFastParamsESProducerAlpakaPhase2@alpaka',
ComponentName = cms.string("PixelCPEFastParamsPhase2"),
appendToDataLabel = cms.string(''),
alpaka = cms.untracked.PSet(backend = cms.untracked.string('')
)
)
from Configuration.ProcessModifiers.alpaka_cff import alpaka
modifyConfigurationForAlpakaPixelCPEFastParamsPhase2_ = alpaka.makeProcessModifier(_addProcessPixelCPEFastParamsPhase2)
|