1
2
3
4
5
6
7
8
9
10
11
|
import FWCore.ParameterSet.Config as cms
L1CondDBIOVWriter = cms.EDAnalyzer("L1CondDBIOVWriter",
toPut = cms.VPSet(),
tscKey = cms.string('dummy'),
ignoreTriggerKey = cms.bool(False),
logKeys = cms.bool(False),
logTransactions = cms.bool(False),
forceUpdate = cms.bool(False)
)
|