Trisurf Monte Carlo simulator
Samo Penic
2014-09-11 39ff57c7adf4fb04fffa2f3093aaa5fafdddaa74
started with trisurf scripts
1 files added
46 ■■■■■ changed files
bin/trisurf-deploy 46 ●●●●● patch | view | raw | blame | history
bin/trisurf-deploy
New file
@@ -0,0 +1,46 @@
#!/bin/bash
#This part is a configuration part of trisurf deploy
#definition of tapes
declare -a tapes=("tape1" "tape2" "tape3" "tape4");
#what options from tape should be overriden
declare -a tape_overrides=("xk0=10" "constvol=2,xk=20" "" "");
#some extra options for program execution
declare -a extra_options=("--force-from-tape" "--reset-iteration-count" "" "");
#main directory
declare directory="/home/samo/trisurfanje"
#subdirectory structure
function subdir() {
    exit 0;
}
#End of configuration
declare tape_no=${#tapes[@]}
for i in `seq 1 $tape_no`; do
    echo "trisurf -t ${tapes[i-1]} -d $directory/subdir($i) -o ${tape_overrides[i-1]} ${extra_options[i-1]}"
done;
#Functions required for operation
echo "Deploying configuration of trisurf"