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
Commits
d0c8253c
Commit
d0c8253c
authored
10 months ago
by
John Chapman
Committed by
John Chapman
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Let POOLtoEI_Skeleton recognise inputs containing StreamEVNT as well as StreamEVGEN as EVNT files
parent
f359b678
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!71424
2024-05-16: merge of 24.0 into main
,
!71084
Migrating EVNTMerge_tf.py to ComponentAccumulator
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Database/EventIndex/EventIndexProducer/python/POOLtoEI_Skeleton.py
+1
-1
1 addition, 1 deletion
...EventIndex/EventIndexProducer/python/POOLtoEI_Skeleton.py
with
1 addition
and
1 deletion
Database/EventIndex/EventIndexProducer/python/POOLtoEI_Skeleton.py
+
1
−
1
View file @
d0c8253c
...
...
@@ -125,7 +125,7 @@ def configurePOOL2EIglobals(runArgs, flags):
# if EVNT, disable trigger processing
if
job
.
DoTriggerInfo
:
try
:
if
(
EventStreamInfo_key
is
not
None
and
'
StreamEVGEN
'
in
flags
.
Input
.
ProcessingTags
):
if
(
EventStreamInfo_key
is
not
None
and
(
'
StreamEVGEN
'
in
flags
.
Input
.
ProcessingTags
or
'
StreamEVNT
'
in
flags
.
Input
.
ProcessingTags
)
):
eilog
.
info
(
"
Disable trigger processing for EVNT files
"
)
job
.
DoTriggerInfo
=
False
...
...
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