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
!77824
AthenaCommon: ROOT initiailization fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
AthenaCommon: ROOT initiailization fix
ssnyder/athena:batchmode.AthenaCommon-20250213
into
main
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:batchmode.AthenaCommon-20250213
into
main
1 month ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
Make sure that ROOT batch mode gets set properly.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
9aecfd44
1 commit,
1 month ago
1 file
+
13
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Control/AthenaCommon/share/Preparation.py
+
13
−
0
Options
@@ -47,6 +47,19 @@ import AthenaCommon.AtlasUnixStandardJob
from
PyUtils.Helpers
import
ROOT6Setup
ROOT6Setup
(
batch
=
not
opts
.
interactive
)
# Make sure that batch mode gets set properly.
# ROOT6Setup will set things up so that whenever we do an `import ROOT',
# then gROOT.SetBatch will be called properly.
# However, if someone instead writes `from ROOT import gSystem'
# (or anything other than gROOT), then the ROOT python update thread
# will be started before ROOT6Setup calls SetBatch.
# (This was then problematic for some MP jobs which used python
# algorithms.)
# So include the import here explictly to ensure that batch mode gets set.
# The following call to SetBatch is strictly redundant, but included
# for clarity.
import
ROOT
ROOT
.
gROOT
.
SetBatch
(
not
opts
.
interactive
)
## now import the top-level module which eases interactive work and/or
Loading