Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
153
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
!67645
Comment out debug printouts
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Comment out debug printouts
rbianchi-main-patch-70601
into
main
Overview
6
Commits
1
Pipelines
1
Changes
1
All threads resolved!
Show all comments
Merged
Riccardo Maria Bianchi
requested to merge
rbianchi-main-patch-70601
into
main
1 year ago
Overview
6
Commits
1
Pipelines
1
Changes
1
All threads resolved!
Show all comments
Expand
👍
0
👎
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
990673ab
1 commit,
1 year ago
1 file
+
7
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
graphics/VP1/VP1Algs/share/vp1
+
7
−
2
Options
#!/bin/bash
#
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
#
# Script to construct the command that launches Athena on vp1.py,
# with all the appropriate options (in the -c flag).
#
@@ -22,9 +26,10 @@
#fixme/todo: option to start cruise mode (event/second)
#fixme/todo: MULTINP_CPY should not be allowed to exist beforehand!
# For DEBUG only
# Prefix all output from this script with '[vp1]'
exec
>
>(
trap
""
INT TERM
;
sed
's/^/[vp1] /'
)
exec
2>
>(
trap
""
INT TERM
;
sed
's/^/[vp1\/stderr] /'
>
&2
)
#
exec > >(trap "" INT TERM; sed 's/^/[vp1] /')
#
exec 2> >(trap "" INT TERM; sed 's/^/[vp1\/stderr] /' >&2)
### TERMINAL COLORS ###
Loading