Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable forceGeneration for L1 O2O online producers #37861

Merged
merged 1 commit into from May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -17,7 +17,7 @@

L1TCaloParamsOnlineProd = cms.ESProducer("L1TCaloParamsOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
exclusiveLayer = cms.uint32(0), # process both layers by default
transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
Expand Down
Expand Up @@ -4,7 +4,7 @@

L1TGlobalPrescalesVetosOnlineProd = cms.ESProducer("L1TGlobalPrescalesVetosOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
)
Expand Up @@ -17,7 +17,7 @@

L1TMuonBarrelParamsOnlineProd = cms.ESProducer("L1TMuonBarrelParamsOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
)
Expand Up @@ -17,7 +17,7 @@

L1TMuonEndCapParamsOnlineProd = cms.ESProducer("L1TMuonEndCapParamsOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
)
Expand Up @@ -17,7 +17,7 @@

L1TMuonGlobalParamsOnlineProd = cms.ESProducer("L1TMuonGlobalParamsOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
)
Expand Up @@ -4,7 +4,7 @@

L1TMuonOverlapFwVersionOnlineProd = cms.ESProducer("L1TMuonOverlapFwVersionOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
)
Expand Up @@ -2,7 +2,7 @@

L1TUtmTriggerMenuOnlineProd = cms.ESProducer("L1TUtmTriggerMenuOnlineProd",
onlineAuthentication = cms.string('.'),
forceGeneration = cms.bool(False),
forceGeneration = cms.bool(True),
onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R')
# menu producer must be transaction safe otherwise everyone is screwed
)