forked from alisw/AliRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use Root shell but bash to run the simulation and reconstruction
- Loading branch information
hristov
committed
Apr 21, 2008
1 parent
4ba71f6
commit f3bc8da
Showing
2 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
if [ "$ALICE_TARGET" = "win32gcc" ] | ||
then | ||
REXE=root_exe.exe | ||
else | ||
REXE=root.exe | ||
fi | ||
|
||
rm -rf *.root *.dat *.log fort* hlt hough raw* *~ | ||
|
||
${REXE} -b -q sim.C 2>&1 | tee sim.log | ||
${REXE} -b -q rec.C 2>&1 | tee rec.log | ||
${REXE} -b -q ${ALICE_ROOT}/STEER/CreateAODfromESD.C 2>&1 | tee aod.log | ||
|
||
|
||
|
||
|