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
!70724
Clean up legacy LArG4 configs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Clean up legacy LArG4 configs
tstreble-24.0-patch-3248
into
24.0
Overview
7
Commits
3
Pipelines
2
Changes
6
Merged
Thomas Strebler
requested to merge
tstreble-24.0-patch-3248
into
24.0
1 year ago
Overview
7
Commits
3
Pipelines
2
Changes
6
Expand
0
0
Merge request reports
Compare
24.0
version 2
380b9374
1 year ago
version 1
d9cec2f5
1 year ago
24.0 (base)
and
latest version
latest version
a8cbba26
3 commits,
1 year ago
version 2
380b9374
2 commits,
1 year ago
version 1
d9cec2f5
1 commit,
1 year ago
6 files
+
0
−
143
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
LArCalorimeter/LArG4/LArG4GenShowerLib/share/LArG4FSStartPointFilterBody.py deleted
100755 → 0
+
0
−
32
Options
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
ServiceMgr
.
MessageSvc
.
OutputLevel
=
INFO
## Algorithm sequence
from
AthenaCommon.AlgSequence
import
AlgSequence
topSequence
=
AlgSequence
()
## AthenaCommon flags
from
AthenaCommon.AthenaCommonFlags
import
athenaCommonFlags
i
=
options
[
'
outevents
'
]
athenaCommonFlags
.
EvtMax
=
i
athenaCommonFlags
.
PoolHitsOutput
.
set_Off
()
from
AthenaCommon.AppMgr
import
theApp
theApp
.
EvtMax
=
i
import
AthenaCommon.AtlasUnixGeneratorJob
from
TruthIO.TruthIOConf
import
HepMCReadFromFile
read
=
HepMCReadFromFile
()
read
.
InputFile
=
options
[
'
outfile
'
]
topSequence
+=
read
from
AthenaPoolCnvSvc.WriteAthenaPool
import
AthenaPoolOutputStream
outStream
=
AthenaPoolOutputStream
(
"
OutStream
"
)
outStream
.
ItemList
=
[
"
EventInfo#*
"
,
"
McEventCollection#*
"
]
outfile
=
options
[
'
outfile
'
]
if
outfile
.
endswith
(
"
.ascii
"
)
:
outfile
=
outfile
[:
-
6
]
outStream
.
OutputFile
=
outfile
+
"
.pool.root
"
Loading