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
!47668
Pixel Monitoring: use of occupancy flags in job options
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Pixel Monitoring: use of occupancy flags in job options
ibragimo/athena:dev/jo-occ-flags
into
master
Overview
3
Commits
4
Pipelines
1
Changes
3
Merged
Iskander Ibragimov
requested to merge
ibragimo/athena:dev/jo-occ-flags
into
master
3 years ago
Overview
3
Commits
4
Pipelines
1
Changes
3
Expand
tuning of occupancy-related job option flags to use them to adjust ranges of few 1D histograms based on expected occupancy
reading container names from ID job options (were hard-coded before)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
53b746fe
4 commits,
3 years ago
3 files
+
47
−
47
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
InnerDetector/InDetExample/InDetRecExample/share/InDetMonitoringPixel.py
+
10
−
17
Options
@@ -25,30 +25,23 @@ from InDetRecExample.InDetKeys import InDetKeys
from
InDetRecExample
import
TrackingCommon
if
forceOnline
:
athenaCommonFlags
.
isOnline
=
True
kwargsHitMonAlg
=
{
'
doOnline
'
:
True
if
athenaCommonFlags
.
isOnline
()
else
False
,
#Histograms for online (athenaPT) running
'
doLumiBlock
'
:
False
if
athenaCommonFlags
.
isOnline
()
else
True
,
#Turn on/off histograms stored for each lumi block
'
doLowOccupancy
'
:
False
,
#Turn on/off histograms with binning for cosmics/single beam
'
doHighOccupancy
'
:
True
,
#Turn on/off histograms with binning for collisions
'
doHeavyIonMon
'
:
InDetFlags
.
doHeavyIon
(),
# Histogram modification for heavy ion monitoring
'
doFEPlots
'
:
True
,
#Turn on/off histograms with FE Status information
kwargsHitMonAlg
=
{
'
doOnline
'
:
True
if
athenaCommonFlags
.
isOnline
()
else
False
,
#Histograms for online (GlobalMonitoring) running
'
doLumiBlock
'
:
False
if
athenaCommonFlags
.
isOnline
()
else
True
,
#Turn on/off histograms stored every 1(20) lumi block(s)
'
doFEPlots
'
:
True
,
#Turn on/off per FE-I3 histograms
'
RDOName
'
:
InDetKeys
.
PixelRDOs
()
}
kwargsClusMonAlg
=
{
'
doOnline
'
:
True
if
athenaCommonFlags
.
isOnline
()
else
False
,
#Histograms for online (athenaPT) running
'
doLumiBlock
'
:
False
if
athenaCommonFlags
.
isOnline
()
else
True
,
#Turn on/off histograms stored for each lumi block
'
doLowOccupancy
'
:
False
,
#Turn on/off histograms with binning for cosmics/single beam
'
doHighOccupancy
'
:
True
,
#Turn on/off histograms with binning for collisions
'
doHeavyIonMon
'
:
InDetFlags
.
doHeavyIon
(),
# Histogram modification for heavy ion monitoring
'
doFEPlots
'
:
True
,
#Turn on/off histograms with FE Status information
kwargsClusMonAlg
=
{
'
doOnline
'
:
True
if
athenaCommonFlags
.
isOnline
()
else
False
,
#Histograms for online (GlobalMonitoring) running
'
doLumiBlock
'
:
False
if
athenaCommonFlags
.
isOnline
()
else
True
,
#Turn on/off histograms stored every 1(20) lumi block(s)
'
doLowOccupancy
'
:
InDetFlags
.
doCosmics
(),
#Setting up 1D histogram ranges and binnings, if False, high occupancy i.e. collisions settings will be used
'
doHeavyIonMon
'
:
InDetFlags
.
doHeavyIon
(),
#Setting up 1D histogram ranges and binnings for heavy ions
'
doFEPlots
'
:
True
,
#Turn on/off per FE-I3 histograms
'
ClusterName
'
:
InDetKeys
.
PixelClusters
(),
'
TrackName
'
:
InDetKeys
.
Tracks
()
}
kwargsErrMonAlg
=
{
'
doOnline
'
:
True
if
athenaCommonFlags
.
isOnline
()
else
False
,
#Histograms for online (athenaPT) running
'
doLumiBlock
'
:
False
if
athenaCommonFlags
.
isOnline
()
else
True
,
#Turn on/off histograms stored for each lumi block
'
doLowOccupancy
'
:
False
,
#Turn on/off histograms with binning for cosmics/single beam
'
doHighOccupancy
'
:
True
,
#Turn on/off histograms with binning for collisions
'
doHeavyIonMon
'
:
InDetFlags
.
doHeavyIon
()
kwargsErrMonAlg
=
{
'
doOnline
'
:
True
if
athenaCommonFlags
.
isOnline
()
else
False
,
#Histograms for online (GlobalMonitoring) running
'
doLumiBlock
'
:
False
if
athenaCommonFlags
.
isOnline
()
else
True
#Turn on/off histograms stored every 1(20) lumi block(s)
}
if
forceOnline
:
athenaCommonFlags
.
isOnline
=
False
Loading