1
2
3
4
5
6
7
8
9
10
11
|
import FWCore.ParameterSet.Config as cms
L1CondDBPayloadWriter = cms.EDAnalyzer("L1CondDBPayloadWriter",
writeL1TriggerKey = cms.bool(True),
writeConfigData = cms.bool(True),
overwriteKeys = cms.bool(False),
logTransactions = cms.bool(False),
newL1TriggerKeyList = cms.bool(False)
)
|