mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 18:18:03 +00:00
d578c71b83
* Move files * Move files * Add galactic to RA/dec * Update sky maps * Add projected fields * Remove old import * Quick update * Add IO * Add imports * Update imports * Add basic file
26 lines
506 B
Bash
Executable file
26 lines
506 B
Bash
Executable file
nthreads=1
|
|
memory=64
|
|
on_login=${1}
|
|
simname=${2}
|
|
queue="berg"
|
|
env="/mnt/users/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="field_projected.py"
|
|
|
|
|
|
if [ "$on_login" != "1" ] && [ "$on_login" != "0" ]
|
|
then
|
|
echo "'on_login' (1) must be either 0 or 1."
|
|
exit 1
|
|
fi
|
|
|
|
pythoncm="$env $file --simname $simname"
|
|
if [ $on_login -eq 1 ]; then
|
|
echo $pythoncm
|
|
$pythoncm
|
|
else
|
|
cm="addqueue -q $queue -n $nthreads -m $memory $pythoncm"
|
|
echo "Submitting:"
|
|
echo $cm
|
|
echo
|
|
eval $cm
|
|
fi
|