Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Davide Di Croce
athena
Commits
44a7995f
Commit
44a7995f
authored
1 year ago
by
Walter Lampl
Committed by
Melissa Yexley
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
reinstate accidentally deleted file LArNoiseBursts_tf.py
parent
3f026443
No related branches found
Branches containing commit
Tags
nightly/24.0/2024-03-07T2101
nightly/24.0/2024-03-08T0001
nightly/24.0/2024-03-08T0301
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LArCalorimeter/LArCafJobs/share/LArNoiseBursts_tf.py
+38
-0
38 additions, 0 deletions
LArCalorimeter/LArCafJobs/share/LArNoiseBursts_tf.py
with
38 additions
and
0 deletions
LArCalorimeter/LArCafJobs/share/LArNoiseBursts_tf.py
0 → 100755
+
38
−
0
View file @
44a7995f
#!/usr/bin/env python
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
__doc__
=
"""
JobTransform to run LAr Noise Burst jobs
"""
import
sys
from
PyJobTransforms.transform
import
transform
from
PyJobTransforms.trfExe
import
athenaExecutor
from
PyJobTransforms.trfArgs
import
addAthenaArguments
,
addDetectorArguments
import
PyJobTransforms.trfArgClasses
as
trfArgClasses
if
__name__
==
'
__main__
'
:
executorSet
=
set
()
executorSet
.
add
(
athenaExecutor
(
name
=
'
LArNoiseBursts
'
,
skeletonFile
=
None
,
skeletonCA
=
'
LArCafJobs.LArNoiseSkeleton
'
,
substep
=
'
e2a
'
,
inData
=
[
'
ESD
'
,],
outData
=
[
'
NTUP_LARNOISE
'
,
'
NTUP_HECNOISE
'
]))
trf
=
transform
(
executor
=
executorSet
)
addAthenaArguments
(
trf
.
parser
)
addDetectorArguments
(
trf
.
parser
)
trf
.
parser
.
add_argument
(
'
--inputESDFile
'
,
nargs
=
'
+
'
,
type
=
trfArgClasses
.
argFactory
(
trfArgClasses
.
argPOOLFile
,
io
=
'
input
'
),
help
=
'
Input pool file
'
,
group
=
'
Reco Files
'
)
trf
.
parser
.
add_argument
(
'
--outputNTUP_LARNOISEFile
'
,
nargs
=
'
+
'
,
type
=
trfArgClasses
.
argFactory
(
trfArgClasses
.
argNTUPFile
,
io
=
'
output
'
),
help
=
'
Output LAr Noise Burst file
'
,
group
=
'
Ntuple Files
'
)
trf
.
parser
.
add_argument
(
'
--outputNTUP_HECNOISEFile
'
,
nargs
=
'
+
'
,
type
=
trfArgClasses
.
argFactory
(
trfArgClasses
.
argNTUPFile
,
io
=
'
output
'
),
help
=
'
Output HECNoise file
'
,
group
=
'
Ntuple Files
'
)
trf
.
parseCmdLineArgs
(
sys
.
argv
[
1
:])
trf
.
execute
()
trf
.
generateReport
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment