Skip to content

Commit

Permalink
First submission
Browse files Browse the repository at this point in the history
  • Loading branch information
Werner Man-Li Sun committed Mar 18, 2009
1 parent 4a795e1 commit 3d77f8d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CondTools/L1Trigger/python/L1CondDBIOVWriter_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from CondTools.L1Trigger.L1CondDBIOVWriter_cfi import *

from CondCore.DBCommon.CondDBSetup_cfi import *
outputDB = cms.Service("PoolDBOutputService",
CondDBSetup,
BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
connect = cms.string('sqlite_file:l1config.db'),
toPut = cms.VPSet(cms.PSet(
record = cms.string("L1TriggerKeyRcd"),
tag = cms.string("L1TriggerKey_IDEAL"))
))
outputDB.DBParameters.authenticationPath = '.'

from CondTools.L1Trigger.L1SubsystemParams_cfi import *
outputDB.toPut.extend(L1SubsystemParams.recordInfo)
12 changes: 12 additions & 0 deletions CondTools/L1Trigger/python/L1CondDBPayloadWriter_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from CondTools.L1Trigger.L1CondDBPayloadWriter_cfi import *

from CondCore.DBCommon.CondDBSetup_cfi import *
outputDB = cms.Service("PoolDBOutputService",
CondDBSetup,
BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
connect = cms.string('sqlite_file:l1config.db'),
toPut = cms.VPSet(cms.PSet(
record = cms.string("L1TriggerKeyListRcd"),
tag = cms.string("L1TriggerKeyList_IDEAL"))
))
outputDB.DBParameters.authenticationPath = '.'

0 comments on commit 3d77f8d

Please sign in to comment.