-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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,19 @@ | ||
#!/usr/bin/env bash | ||
mkdir -p validate | ||
python sim.py -o $PWD/validate 2> /dev/null 1> /dev/null | ||
|
||
evio2hipo out.hipo validate/*.evio | ||
|
||
echo "out.hipo" validate/files.list | ||
|
||
echo "set inputDir $PWD/validate" > cook.clara | ||
echo "set outputDir $PWD" >> cook.clara | ||
echo "set threads $(nproc)" >> cook.clara | ||
echo "set javaMemory 4" >> cook.clara | ||
echo "set fileList $PWD/validate/files.list" >> cook.clara | ||
echo "run local" >> cook.clara | ||
echo "exit" >> cook.clara | ||
#clara-shell cook.clara | ||
|
||
|
||
#mvn install && mvn exec:java -Dexec.mainClass="org.jlab.c12val.ParticleCounter" |