Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!66822
implement config-method for LArMaskedSC and use it where needed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
implement config-method for LArMaskedSC and use it where needed
wlampl/athena:MaskedSCCfg
into
23.0
Overview
6
Commits
1
Pipelines
1
Changes
3
Merged
Walter Lampl
requested to merge
wlampl/athena:MaskedSCCfg
into
23.0
1 year ago
Overview
6
Commits
1
Pipelines
1
Changes
3
Expand
Should fix
ATR-28458
0
0
Merge request reports
Compare
23.0
23.0 (base)
and
latest version
latest version
ecd5640e
1 commit,
1 year ago
3 files
+
19
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
LArCalorimeter/LArBadChannelTool/python/LArBadChannelConfig.py
+
12
−
0
Options
@@ -56,6 +56,18 @@ def LArBadFebCfg(configFlags, tag=None):
result
.
addCondAlgo
(
CompFactory
.
LArBadFebCondAlg
(
ReadKey
=
rekey
))
return
result
def
LArMaskedSCCfg
(
configFlags
):
result
=
ComponentAccumulator
()
result
.
merge
(
LArOnOffIdMappingSCCfg
(
configFlags
))
from
IOVDbSvc.IOVDbSvcConfig
import
addFolders
result
.
merge
(
addFolders
(
configFlags
,
"
/LAR/BadChannels/MaskedSC
"
,
"
LAR_ONL
"
,
tag
=
"
LARBadChannelsMaskedSC-RUN3-UPD1-00
"
,
className
=
"
CondAttrListCollection
"
,
extensible
=
configFlags
.
Common
.
isOnline
))
# when run online, need folder to be extensible to force reload each event
condAlgo
=
CompFactory
.
LArBadChannelCondAlg
(
name
=
"
MaskedSCCondAlg
"
,
ReadKey
=
"
/LAR/BadChannels/MaskedSC
"
,
isSC
=
True
,
CablingKey
=
"
LArOnOffIdMapSC
"
,
WriteKey
=
"
LArMaskedSC
"
,
ReloadEveryEvent
=
configFlags
.
Common
.
isOnline
)
result
.
addCondAlgo
(
condAlgo
)
return
result
if
__name__
==
"
__main__
"
:
Loading