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
!70071
2024-03-23: merge of 24.0 into main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
2024-03-23: merge of 24.0 into main
fwinkl/athena:sweep_24.0_main_2024-03-23
into
main
Overview
9
Commits
11
Pipelines
1
Changes
38
Merged
Frank Winklmeier
requested to merge
fwinkl/athena:sweep_24.0_main_2024-03-23
into
main
1 year ago
Overview
9
Commits
11
Pipelines
1
Changes
38
Expand
This sweep contains the following MRs:
!69782 (merged)
cTAU algorithm upgrade - added eTAU rCore/BDT and rHad score cuts
Tau
,
Trigger
,
TriggerMenu
!70013 (merged)
xAODCnv: delete legacy job options referencing RecExConfig
EDM
,
Tau
,
Trigger
!70031 (merged)
Cherry pick - 69552
MuonSpectrometer
,
Trigger
!70027 (merged)
Reduce INFO to DEBUG in RorSeqFilter (
ATR-28971
)
Trigger
Edited
1 year ago
by
Frank Winklmeier
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a22db2b5
11 commits,
1 year ago
38 files
+
202
−
762
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
38
Search (e.g. *.vue) (Ctrl+P)
Event/xAOD/xAODForwardCnv/share/xAODForwardCnv_jobOptions.py deleted
100644 → 0
+
0
−
43
Options
# Enable xAOD making:
from
RecExConfig.RecFlags
import
rec
rec
.
doWritexAOD
=
True
#FNAME="/afs/cern.ch/work/a/azemla/xAODDevelop/rel_2_test/test/MinBiasSliceAthenaTrigRDO/AOD.pool.root"
FNAME
=
"
AOD.pool.root
"
include
(
"
AthenaPython/iread_file.py
"
)
# Access the algorithm sequence:
from
AthenaCommon.AlgSequence
import
AlgSequence
theJob
=
AlgSequence
()
# Create a logger object:
from
AthenaCommon.Logging
import
logging
logger
=
logging
.
getLogger
(
"
xAODForwardCnv_jobOptions
"
)
# Create a POOL output file with the StoreGate contents:
from
OutputStreamAthenaPool.MultipleStreamManager
import
MSMgr
xaodStream
=
MSMgr
.
NewPoolStream
(
"
StreamAOD
"
,
"
xAOD.pool.root
"
)
# Create some xAOD::TrigMinBias objects:
from
xAODForwardCnv.xAODMBTSModuleCreator
import
xAODMBTSModuleCreator
xAODMBTSModuleCreator
()
from
xAODForwardCnv.xAODForwardEventInfoCreator
import
xAODForwardEventInfoCreator
xAODForwardEventInfoCreator
()
# Check what happened to the stream:
xaodStream
.
Print
()
# Split all branches:
ServiceMgr
.
AthenaPoolCnvSvc
.
PoolAttributes
+=
[
"
DEFAULT_SPLITLEVEL=
'
1
'"
]
# Force POOL to just simply use the StoreGate keys as branch names:
ServiceMgr
.
AthenaPoolCnvSvc
.
SubLevelBranchName
=
"
<key>
"
# Do some additional tweaking:
from
AthenaCommon.AppMgr
import
theApp
theApp
.
EvtMax
=
10
ServiceMgr
.
MessageSvc
.
OutputLevel
=
VERBOSE
ServiceMgr
.
MessageSvc
.
defaultLimit
=
1000
Loading