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
!34973
Fix LArCellMon to work in cosmics
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix LArCellMon to work in cosmics
ponyisi/athena:master-larcellmon-cosmics
into
master
Overview
8
Commits
1
Pipelines
1
Changes
1
Merged
Peter Onyisi
requested to merge
ponyisi/athena:master-larcellmon-cosmics
into
master
4 years ago
Overview
8
Commits
1
Pipelines
1
Changes
1
Expand
Fixes bug in configuration
0
0
Merge request reports
Viewing commit
83c22d39
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
83c22d39
Fix to work in cosmics
· 83c22d39
Peter Onyisi
authored
4 years ago
Calorimeter/CaloMonitoring/python/LArCellMonAlg.py
+
3
−
3
Options
@@ -69,7 +69,7 @@ def LArCellMonConfig(inputFlags):
algname
=
algname
+
'
Cosmics
'
isCosmics
=
(
inputFlags
.
Beam
.
Type
==
'
cosmics
'
)
LArCellMonConfigCore
(
helper
,
lArCellMonAlg
,
inputFlags
,
isCosmics
,
inputFlags
.
Input
.
isMC
)
LArCellMonConfigCore
(
helper
,
lArCellMonAlg
,
inputFlags
,
isCosmics
,
inputFlags
.
Input
.
isMC
,
algname
)
acc
=
helper
.
result
()
@@ -85,10 +85,10 @@ def LArCellMonConfig(inputFlags):
return
cfg
def
LArCellMonConfigCore
(
helper
,
alg
instance
,
inputFlags
,
isCosmics
=
False
,
isMC
=
False
):
def
LArCellMonConfigCore
(
helper
,
alg
class
,
inputFlags
,
isCosmics
=
False
,
isMC
=
False
,
algname
=
'
LArCellMonAlg
'
):
LArCellMonAlg
=
helper
.
addAlgorithm
(
alg
instance
,
'
LArCellMonAlg
'
)
LArCellMonAlg
=
helper
.
addAlgorithm
(
alg
class
,
algname
)
if
isCosmics
:
badChanMaskProblems
=
[
"
deadReadout
"
,
"
deadPhys
"
,
"
short
"
,
"
sporadicBurstNoise
"
,
"
highNoiseHG
"
,
"
highNoiseMG
"
,
"
highNoiseLG
"
]
Loading