Skip to content

Commit

Permalink
add seq_continuum option
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Sep 5, 2024
1 parent 8c2bd85 commit 2cf0ab8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions bin/SLpipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# @todo optional PI parameters
# option to have a data+time ID in the name, by default it will be blank?

_version="SLpipeline: 31-aug-2024"
_version="SLpipeline: 4-sep-2024"

echo ""
echo "LMTOY>> VERSION $(cat $LMTOY/VERSION)"
Expand Down Expand Up @@ -40,7 +40,7 @@ sleep=2 # add few seconds before running, allowing quick interrupt
nproc=1 # number of processors to use (keep it at 1)
rsync="" # rsync address for the TAP file (used at LMT/malt)
oid="" # experimental parallel processing using __$oid == currently not in use ==
goal=Science # Science (or override with: Pointing,Focus [not officially supported])
goal=Science # Science (or override with: Pointing,Focus,Cont [not officially supported])
webrun="" # optional directive for webrun to do parameter checking (SEQ/map, SEQ/Bs, RSR, ....)
qagrade=0 # the final grade recorded for the archive (QAFAIL enforces -1; 0 by default; -2,1,2,3 when DA graded)
public="" # if given, the public data for archiving. Default is 1 year after today. Example: 2020-12-31
Expand Down Expand Up @@ -330,6 +330,13 @@ else
python $LMTOY/LinePointing/linepoint.py $obsnum > lmtoy_$obsnum.log
echo "Results in $pdir"
fi

if [ $goal == "Cont" ]; then
echo Running seq_continuum $obsnum
cd $pdir
seq_continuum.sh obsnum=$obsnum $* # blabla
echo "Results in $pdir"
fi
lmtoy_report
exit 0
fi
Expand Down

0 comments on commit 2cf0ab8

Please sign in to comment.