Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ALICE-open-data
ALICE Blender animation
Commits
6d5a3ccd
Commit
6d5a3ccd
authored
Dec 16, 2019
by
Lucas Mello Schnorr
Browse files
put this outside to simplify program
parent
b614e8cc
Changes
2
Hide whitespace changes
Inline
Side-by-side
aliRoot/runAnalysis.C
View file @
6d5a3ccd
...
...
@@ -8,11 +8,7 @@
int
runAnalysis
(
int
selected_event
=
0
)
{
// Erase output txt files
ofstream
esd_detail
,
s_event
,
events_number
;
events_number
.
open
(
"events_number.dat"
);
events_number
.
close
();
ofstream
esd_detail
,
s_event
;
s_event
.
open
(
"s-event.dat"
);
s_event
<<
selected_event
;
...
...
workflow_sketch.sh
View file @
6d5a3ccd
...
...
@@ -117,6 +117,10 @@ elif [ "$DEFAULT_ANIMATION" = "false" ]; then
else
echo
"The number of events in the file is
${
n_events
}
."
fi
# Erase output txt files
rm
-f
${
FILE_WITH_NUMBER_OF_EVENTS
}
exit
for
((
i
=
0
;
i<n_events
;
i++
))
;
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment