Index: branches/tap_branches/operations/Makefile.in
===================================================================
--- branches/tap_branches/operations/Makefile.in	(revision 27836)
+++ branches/tap_branches/operations/Makefile.in	(revision 27836)
@@ -0,0 +1,46 @@
+default: install
+help:
+	@echo "USAGE: make install"
+
+SRC     =       .
+DEST	=       @OPSDIR@
+
+INPUTS = \
+$(DEST)/detrend/input      \
+$(DEST)/publishing/input   \
+$(DEST)/pstamp/input       \
+$(DEST)/registration/input \
+$(DEST)/replication/input  \
+$(DEST)/stdscience/input   \
+$(DEST)/summitcopy/input
+
+PTOLEMYRC = \
+$(DEST)/detrend/ptolemy.rc      \
+$(DEST)/publishing/ptolemy.rc   \
+$(DEST)/pstamp/ptolemy.rc       \
+$(DEST)/registration/ptolemy.rc \
+$(DEST)/replication/ptolemy.rc  \
+$(DEST)/stdscience/ptolemy.rc   \
+$(DEST)/summitcopy/ptolemy.rc
+
+install: $(INPUTS) $(PTOLEMYRC)
+
+uninstall:
+	rm -f $(INPUTS) || exit
+	rm -f $(PTOLEMYRC) || exit
+
+# dependency rules #########################
+$(DEST)/%/input: $(SRC)/%/input
+	@if [ ! -d `dirname $@` ]; then mkdir -p `dirname $@`; fi
+	cp $(SRC)/$*/input $(DEST)/$*/input || exit
+
+$(DEST)/%/ptolemy.rc: $(SRC)/%/ptolemy.rc
+	@if [ ! -d `dirname $@` ]; then mkdir -p `dirname $@`; fi
+	cp $(SRC)/$*/ptolemy.rc $(DEST)/$*/ptolemy.rc || exit
+
+# utilities #################################################
+
+clean:	
+	rm -f `find . -name "*~"`
+	rm -f `find . -name "#*"`
+
Index: branches/tap_branches/operations/addstar/input
===================================================================
--- branches/tap_branches/operations/addstar/input	(revision 27836)
+++ branches/tap_branches/operations/addstar/input	(revision 27836)
@@ -0,0 +1,22 @@
+
+macro setup
+  module pantasks.pro
+  module addstar.pro
+
+  add.database gpc1
+  add.label dummy
+  set.poll 180
+end
+
+
+macro addstar.revert.on
+  task addstar.revert
+    active true
+  end
+end
+
+macro addstar.revert.off
+  task addstar.revert
+    active false
+  end
+end
Index: branches/tap_branches/operations/addstar/ptolemy.rc
===================================================================
--- branches/tap_branches/operations/addstar/ptolemy.rc	(revision 27836)
+++ branches/tap_branches/operations/addstar/ptolemy.rc	(revision 27836)
@@ -0,0 +1,67 @@
+
+PANTASKS_SERVER_STDOUT  pantasks.stdout.log
+PANTASKS_SERVER_STDERR  pantasks.stderr.log
+PANTASKS_SERVER         ippdb00
+PASSWORD                foobar
+
+### Here follows the regular ~/.ptolemyrc
+### This is required because the addstar task runs from this directory,
+### so it picks up this configuration.
+
+CONFDIR                 /home/panstarrs/ipp/psconfig/ipp-svn.lin64/share/ippconfig
+CAMERA                  default
+
+# location of DVO database tables
+CATDIR                  default
+
+# location of possible data sources
+2MASS_DIR_AS            /data/ipp004.0/elixir/srcdir/refs/2mass.allsky
+2MASS_DIR_DR2           /data/ipp004.0/elixir/srcdir/refs/2mass.dr2
+GSCDIR                  NONE
+USNO_A_DIR              NONE
+USNO_B_DIR              NONE
+TYCHO_DIR               NONE
+
+PHOTCODE_FILE           $CONFDIR/dvo.photcodes
+GSCFILE                 $CONFDIR/GSCregions.tbl
+CATMODE                 SPLIT
+CATFORMAT               PS1_V1
+SKY_DEPTH               3
+# SKY_TABLE             this may be used to override GSCFILE
+ZERO_PT                 25.0
+
+# default values - overridden for specific cameras
+ADDSTAR_RADIUS          1.0
+IMAGE_SCATTER           0.075  # mark images POOR if stdev(Mcal) > IMAGE_SCATTER
+STAR_SCATTER            0.005  # mark stars POOR if stdev(Mrel) > STAR_SCATTER
+IMAGE_OFFSET            0.100  # mark images POOR if abs(delta(Mcal)) > IMAGE_OFFSET
+STAR_CHISQ              10.0   # mark stars POOR if Xm > STAR_CHISQ
+STAR_TOOFEW              3     # mark star FEW if N(good) < STAR_TOOFEW
+IMAGE_TOOFEW            10     # mark image FEW if N(good) < IMAGE_TOOFEW
+IMAGE_GOOD_FRACTION     0.05   # mark image FEW if N(good) < IMAGE_GOOD_FRACTION * Nstars
+
+PM_DT_MIN               0.25
+PM_TOOFEW               4
+POS_TOOFEW              1
+
+RELPHOT_GRID_BINNING    256
+RELPHOT_GRID_X 6
+RELPHOT_GRID_Y 14
+
+SCATTER_LIM             15.0
+MAG_LIM                 20.0   # select stars brighter than this for relphot analysis
+SIGMA_LIM               0.015  # select measurements with dM < SIGMA_LIM for relphot analysis
+
+# access control for client/server addstar mode 
+# PASSWORD
+# HOSTNAME
+# VALID_IP
+
+# camera dependent parameter files:
+FILTER_LIST             $CONFDIR/$CAMERA/dvo.filters
+CAMERA_CONFIG           $CONFDIR/$CAMERA/dvo.layout
+DETREND_RECIPES         $CONFDIR/$CAMERA/dvo.recipe
+
+# load the camera-specific configuration files
+input                   $CONFDIR/$CAMERA/dvo.config
+
Index: branches/tap_branches/operations/configure
===================================================================
--- branches/tap_branches/operations/configure	(revision 27836)
+++ branches/tap_branches/operations/configure	(revision 27836)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./configure.tcsh $*
Index: branches/tap_branches/operations/configure.tcsh
===================================================================
--- branches/tap_branches/operations/configure.tcsh	(revision 27836)
+++ branches/tap_branches/operations/configure.tcsh	(revision 27836)
@@ -0,0 +1,66 @@
+#!/bin/csh -f
+
+# this is a very low-tech version of configure, not built by autoconf.
+
+# user needs to supply:
+# --opsdir : top-level of operations
+
+set opsdir  = ""
+
+set args    = ""
+
+while ("$1" != "") 
+ switch ("$1")
+   # we need to strip the --opt word and --opt=word versions
+   set word = `echo $1 | tr = ' '`
+   if ($#word == 1) shift
+   breaksw;
+  case --opsdir*
+   if ("$1" == "--opsdir") then
+     shift
+     set opsdir = $1
+   else
+     set opsdir = `echo $1 | tr = ' ' | awk '{print $2}'`
+   endif
+   breaksw;
+  case --help:
+   goto usage
+  case -*: 
+   echo ""
+   echo "Unknown option: $1"
+   goto usage
+  default:
+   set args=($args $1);
+   breaksw;
+ endsw
+ shift
+end
+if ($#args != 1) goto usage
+
+echo
+echo "opsdir: $opsdir"
+echo
+
+if ("$opsdir" == "") goto usage
+
+# convert Makefile.in to Makefile:
+if (-e Makefile) mv -f Makefile Makefile~
+cat Makefile.in | sed "s|@OPSDIR@|$opsdir|" > Makefile
+
+exit 0
+
+usage:
+if ($#args > 1) then
+  echo unrecognized options: $args
+endif
+
+cat <<EOF
+USAGE: configure [OPTION]
+
+set the installation operations directory with --opsdir
+
+Configuration:
+  -h, --help              display this help and exit
+
+EOF
+ exit 2;
Index: branches/tap_branches/operations/detrend/.mana
===================================================================
--- branches/tap_branches/operations/detrend/.mana	(revision 26066)
+++ 	(revision )
@@ -1,2 +1,0 @@
-echo {600*4}
-echo {datan(1/4)}
Index: branches/tap_branches/operations/detrend/dark.20090712.sh
===================================================================
--- branches/tap_branches/operations/detrend/dark.20090712.sh	(revision 26066)
+++ 	(revision )
@@ -1,18 +1,0 @@
-#!/bin/csh -f
-
-# 20090712
-# attempting a dark analysis using a range of temperatures.  
-
-dettool -pretend -dbname gpc1 -definebyquery \
-  -det_type DARKTEST \
-  -workdir neb://@HOST@.0/gpc1/detrend.20090712 \
-  -inst GPC1 \
-  -select_ccd_temp_min -76 \
-  -select_pon_time_min 160000 \
-  -select_dateobs_begin 2009-04-01T00:00:00 \
-  -select_dateobs_end 2009-07-15T10:00:00 \
-  -select_exp_type dark \
-  -comment 'darks_%' \
-  -use_begin 2009-01-01 \
-  -random_subset \
-  -random_limit 41
Index: branches/tap_branches/operations/detrend/dark.20090713.sh
===================================================================
--- branches/tap_branches/operations/detrend/dark.20090713.sh	(revision 26066)
+++ 	(revision )
@@ -1,18 +1,0 @@
-#!/bin/csh -f
-
-# 20090713
-# attempting a dark analysis using a range of temperatures.  
-
-dettool -dbname gpc1 -definebyquery \
-  -det_type DARKTEST \
-  -workdir neb://@HOST@.0/gpc1/detrend.20090712 \
-  -inst GPC1 \
-  -select_ccd_temp_min -76 \
-  -select_pon_time_min 160000 \
-  -select_dateobs_begin 2009-04-01T00:00:00 \
-  -select_dateobs_end 2009-07-15T10:00:00 \
-  -select_exp_type dark \
-  -comment 'darks_%' \
-  -use_begin 2009-01-01T00:00:00 \
-  -random_subset \
-  -random_limit 60
Index: branches/tap_branches/operations/detrend/dark.20090714.sh
===================================================================
--- branches/tap_branches/operations/detrend/dark.20090714.sh	(revision 26066)
+++ 	(revision )
@@ -1,19 +1,0 @@
-#!/bin/csh -f
-
-# 20090714
-# attempting a dark analysis using a smaller range of temperatures.  
-
-dettool -dbname gpc1 -definebyquery \
-  -det_type DARKTEST \
-  -workdir neb://@HOST@.0/gpc1/detrend.20090712 \
-  -inst GPC1 \
-  -select_ccd_temp_min -60 \
-  -select_pon_time_min 160000 \
-  -select_dateobs_begin 2009-04-01T00:00:00 \
-  -select_dateobs_end 2009-07-15T10:00:00 \
-  -select_exp_type dark \
-  -comment 'darks_%' \
-  -use_begin 2009-01-01T00:00:00 \
-  -time_begin 2009-01-01T00:00:00 \
-  -random_subset \
-  -random_limit 60
Index: branches/tap_branches/operations/detrend/dark.20090716.sh
===================================================================
--- branches/tap_branches/operations/detrend/dark.20090716.sh	(revision 26066)
+++ 	(revision )
@@ -1,22 +1,0 @@
-#!/bin/csh -f
-
-# 20090716 : EAM : It turns out that the camera reports bogus DARKTIME
-# value occasionally.  I've changed gpc1/ppMerge.config to use the
-# EXPTIME instead, and initial test show that does a much better job.
-# Here I am re-attempting a dark analysis using the full range of
-# temperatures.
-
-dettool -dbname gpc1 -definebyquery \
-  -det_type DARKTEST \
-  -workdir neb://@HOST@.0/gpc1/detrend.20090716 \
-  -inst GPC1 \
-  -select_ccd_temp_min -75 \
-  -select_pon_time_min 160000 \
-  -select_dateobs_begin 2009-04-01T00:00:00 \
-  -select_dateobs_end 2009-07-15T10:00:00 \
-  -select_exp_type dark \
-  -comment 'darks_%' \
-  -use_begin 2009-01-01T00:00:00 \
-  -time_begin 2009-01-01T00:00:00 \
-  -random_subset \
-  -random_limit 60
Index: branches/tap_branches/operations/detrend/fringe.20090717.sh
===================================================================
--- branches/tap_branches/operations/detrend/fringe.20090717.sh	(revision 26066)
+++ 	(revision )
@@ -1,23 +1,0 @@
-#!/bin/csh -f
-
-# 20090717 : EAM : Generate a fringe frame selecting y-band images with the sun down > 30 degrees
-
-dettool -simple -dbname gpc1 -definebyquery \
-  -det_type FRINGE \
-  -workdir neb://@HOST@.0/gpc1/detrend.20090717 \
-  -inst GPC1 \
-  -select_pon_time_min 200000 \
-  -select_dateobs_begin 2009-04-01T00:00:00 \
-  -select_dateobs_end 2009-07-15T10:00:00 \
-  -select_exp_type object \
-  -select_exp_time_min 200.0 \
-  -select_filter y.00000 \
-  -select_sun_alt_max -30 \
-  -filter y \
-  -select_exp_type object \
-  -comment 'MD%' \
-  -use_begin 2009-01-01T00:00:00 \
-  -time_begin 2009-01-01T00:00:00 \
-  -random_subset \
-  -random_limit 60
-
Index: branches/tap_branches/operations/detrend/fringe.20090722.sh
===================================================================
--- branches/tap_branches/operations/detrend/fringe.20090722.sh	(revision 26066)
+++ 	(revision )
@@ -1,25 +1,0 @@
-#!/bin/csh -f
-
-echo "done"
-exit 1
-# 20090722 : EAM : Generate a fringe frame selecting y-band images with the sun down > 30 degrees and moon phase > 0.75
-
-dettool -simple -dbname gpc1 -definebyquery \
-  -det_type FRINGE \
-  -workdir neb://@HOST@.0/gpc1/detrend.20090717 \
-  -inst GPC1 \
-  -select_pon_time_min 200000 \
-  -select_dateobs_begin 2009-04-01T00:00:00 \
-  -select_dateobs_end 2009-07-22T10:00:00 \
-  -select_exp_type object \
-  -select_exp_time_min 25.0 \
-  -select_filter y.00000 \
-  -select_sun_alt_max -30 \
-  -select_sun_alt_max -30 \
-  -select_moon_phase_min 0.75 \
-  -comment 'ThreePi%' \
-  -filter y \
-  -use_begin 2009-01-01T00:00:00 \
-  -time_begin 2009-01-01T00:00:00 \
-  -random_subset \
-  -random_limit 50
Index: branches/tap_branches/operations/pstamp/input
===================================================================
--- branches/tap_branches/operations/pstamp/input	(revision 27836)
+++ branches/tap_branches/operations/pstamp/input	(revision 27836)
@@ -0,0 +1,85 @@
+
+macro setup
+ module pantasks.pro
+ add.database ippRequestServer
+ module pstamp.pro
+
+ # WARNING: don't put quotes around these two words. It will cause it to get passed
+ # to pstamptool as one argument
+ $PS_DBSERVER= -dbserver ipp049
+end
+
+macro add.hosts
+    controller host add ipp021 
+    controller host add ipp024 
+    controller host add ipp026 
+    controller host add ipp028 
+    controller host add ipp029 
+    controller host add ipp030 
+    controller host add ipp031 
+    controller host add ipp032 
+    controller host add ipp033 
+    controller host add ipp034 
+    controller host add ipp035 
+    controller host add ipp036 
+    controller host add ipp038
+    controller host add ipp039
+    controller host add ipp040
+    controller host add ipp041
+    controller host add ipp042
+    controller host add ipp043
+    controller host add ipp044
+    controller host add ipp045
+    controller host add ipp046
+    controller host add ipp047
+    controller host add ipp048
+    controller host add ipp049
+    controller host add ipp050
+    controller host add ipp051
+    controller host add ipp052
+    controller host add ipp053
+end
+
+macro pstamp.status
+    book listbook pstampRequest
+    book listbook pstampJob
+end
+
+macro find.off
+    task pstamp.request.find
+        active false
+    end
+end
+
+macro find.on
+    task pstamp.request.find
+        active true
+    end
+end
+
+macro finish.off
+    task request.finish.run
+        active false
+    end
+end
+
+macro finish.on
+    task request.finish.run
+        active true
+    end
+
+end
+
+macro bump
+    $POLLLIMIT = 100
+end
+
+macro list.values
+    echo LOADPOLL $LOADPOLL
+    echo LOADEXEC $LOADEXEC
+    echo POLLIMIT $POLLLIMIT
+end
+
+macro setdbserver
+    $PS_DBSERVER = -dbserver ipp049
+end
Index: branches/tap_branches/operations/pstamp/ptolemy.rc
===================================================================
--- branches/tap_branches/operations/pstamp/ptolemy.rc	(revision 27836)
+++ branches/tap_branches/operations/pstamp/ptolemy.rc	(revision 27836)
@@ -0,0 +1,4 @@
+PANTASKS_SERVER_STDOUT  pantasks.stdout.log
+PANTASKS_SERVER_STDERR  pantasks.stderr.log
+PANTASKS_SERVER         ipp049
+PASSWORD                foobar
Index: branches/tap_branches/operations/publishing/input
===================================================================
--- branches/tap_branches/operations/publishing/input	(revision 26066)
+++ branches/tap_branches/operations/publishing/input	(revision 27836)
@@ -1,9 +1,7 @@
 macro setup
-    $MODULES:0 = /home/panstarrs/ipp/ipp-svn/ippTasks
-
     module pantasks.pro
     module publish.pro
 
-    $POLLLIMIT = 16
+    $POLLLIMIT = 64
 
     $LOADPOLL = 1
@@ -14,5 +12,8 @@
 
     add.database gpc1
-    add.label dummy
+#    add.label dummy
+    add.label STS.nightlyscience
+    add.label SweetSpot.nightlyscience
+    add.label ThreePi.nightlyscience
 
     waveC_nothreads
@@ -76,4 +77,13 @@
   controller host add ippc06
   controller host add ippc07
+  controller host add ippc08
+  controller host add ippc09
+  controller host add ippc10
+  controller host add ippc11
+  controller host add ippc12
+  controller host add ippc13
+  controller host add ippc14
+  controller host add ippc15
+  controller host add ippc16
 end
 
@@ -87,4 +97,13 @@
   controller host add ippc06 -threads $1
   controller host add ippc07 -threads $1
+  controller host add ippc08 -threads $1
+  controller host add ippc09 -threads $1
+  controller host add ippc10 -threads $1
+  controller host add ippc11 -threads $1
+  controller host add ippc12 -threads $1
+  controller host add ippc13 -threads $1
+  controller host add ippc14 -threads $1
+  controller host add ippc15 -threads $1
+  controller host add ippc16 -threads $1
 end
 
Index: branches/tap_branches/operations/stdscience/.mana
===================================================================
--- branches/tap_branches/operations/stdscience/.mana	(revision 26066)
+++ 	(revision )
@@ -1,13 +1,0 @@
-echo {4*4/12/12}
-echo {30000/(4*4/12/12)}
-echo {5500*90}
-echo {270000/5000}
-echo {400000*(60*4 + 120)}
-echo {(60*4 + 120)}
-echo {300000*360*5}
-echo {300000*360*5/1e6}
-echo {300000*360*5/3e7}
-echo {(60*8 + 120)}
-echo {300000*600*5/3e7}
-echo {(60*12 + 120)}
-echo {300000*840*5/3e7}
Index: branches/tap_branches/operations/stdscience/.pantasks
===================================================================
--- branches/tap_branches/operations/stdscience/.pantasks	(revision 26066)
+++ 	(revision )
@@ -1,1848 +1,0 @@
-status
-server input input
-setup
-shutdown now
-pwd
-status
-server input input
-setup
-status
-show.database
-show.label
-load.hosts
-status
-status
-status
-show.labels
-run
-run
-show.labels
-status
-status
-add.label scitest.20090419.v0
-status
-status
-status
-status
-status
-status
-status
-add.label scitest.20090419.v1
-status
-status
-status
-status
-status
-status
-pwd
-camera.off
-status
-!ls
-!ls -lrt
-show.label
-status
-show.label
-del.label dummy
-del.label scitest.20090419.v0
-del.label scitest.20090419.v1
-add.label scitest.20090419.v1
-status
-shutdown now
-status
-server input input
-setup
-status
-camera.off
-status
-run
-status
-status
-show.label
-status
-add.label ThreePi.Run2.g.v0
-status
-status
-status
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.z.v0
-add.label ThreePi.Run2.y.v0
-status
-status -tasks
-load.hosts
-status
-control status
-control status
-control status
-status
-status -tasks
-control status
-load.hosts
-status
-status
-control status
-server input input
-get.poll
-set.poll
-set.poll 100
-status
-load.hosts.wave2
-status
-control status
-quti
-server input input
-setup
-load.hosts
-show.label
-add.label ThreePi.Run2.g.v0
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.z.v0
-add.label ThreePi.Run2.y.v0
-stauts
-status
-run
-status
-status
-status -tasks
-camera.off
-status -tasks
-status -tasks
-server input input
-status
-setup
-status
-add.label ThreePi.Run2.g.v0
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.z.v0
-add.label ThreePi.Run2.y.v0
-status
-run
-load.hosts
-status
-statu
-status
-server input input
-setup
-status
-camera.off
-status
-add.label ThreePi.Run2.g.v0
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.z.v0
-add.label ThreePi.Run2.y.v0
-status
-loadhosts
-load.hosts
-status
-run
-status
-status -tasks
-stop
-status
-!cat input
-get.poll
-status
-status
-status
-status
-!cat input
-control status
-control status
-control host off ipp018
-control status
-control status
-control host on ipp018
-control status
-control status
-control status
-control status
-control off ipp018
-control host off ipp018
-control host
-control host on ipp018
-control status
-control host retry ipp018
-control status
-control status
-control status
-!cat input
-status
-run
-status
-status -asks
-status -tasks
-status -taskstats
-status -taskstats
-show.label
-status -taskstats
-load.hosts.wave2
-load.hosts.wave2
-server input input
-show.book chipProcessedImfile
-show.book chipProcessedImfiles
-show.book chipProcessedImfile
-status
-show.book chipPendingImfile
-server input input
-show.book chipPendingImfile
-show.label
-status
-status -tasks
-set.poll 100
-status
-status
-status
-status -tasks
-status -taskstats
-control status
-control status
-status -tasks
-status -taskstats
-status -taskstatreset
-status -taskstatsreset
-status -tasks
-status -taskstats
-~
-status -taskstats
-status -tasks
-status
-status -tasks
-status -taskstats
-status -taskstats
-status -tasks
-status
-control status
-status -tasks
-status
-status
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.r.v0
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.i.v0
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.z.v0
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.y.v0
-status
-status
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.r.v0
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.i.v0
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.z.v0
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.y.v0
-status
-status
-status
-exec chiptool -dbname gpc1 -revertprocessedimfile -label ThreePi.Run2.y.v0
-status
-status
-status
-status
-input input
-setup
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.z.v0
-add.label ThreePi.Run2.y.v0
-status
-run
-status
-stop
-load.hosts
-load.hosts.wave2
-run
-status
-stop
-status
-server input input
-setup
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.z.v0
-add.label ThreePi.Run2.y.v0
-load.hosts
-load.hosts.wave2
-run
-status
-add.label ThreePi.Run2.g.v0
-status
-status
-status
-status
-controller status
-status
-status
-controller status
-status
-status
-status
-stop
-run
-status
-stop
-status
-status
-status
-status
-status
-shutdown now
-status
-status
-shutdown now
-!cat inptu
-!cat input
-server input input
-setup
-load.hosts
-server module stack.pro
-status
-control status
-run
-status
-server input input
-setup
-status
-load.hosts.wave1
-load.hosts.wave2
-load.hosts.wave3
-status
-control status
-status
-control status
-status
-show.label
-add.label MD08.200906.v0
-status
-status
-run
-status
-status
-status
-status
-status
-status
-status
-status -tasks
-stop
-qut
-status
-status -
-status -taskstats
-status -taskstats
-status
-shutdown now
-server input input
-setup
-status
-load.wave1
-load.hosts.wave1
-load.hosts.wave2
-load.hosts.wave3
-status
-control status
-run
-show.label
-status
-add.label MD08.200906.v0
-status
-status
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-stop
-fake.off
-run
-status
-status -tasks
-echo {13*8 + 2}
-echo {60*(13*8 + 2)}
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-stop
-fake.on
-run
-status
-status -tasks
-status -tasks
-status -tasks
-stop
-warp.off
-warp.on
-run
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-stop
-status -tasksl
-stop
-run
-status -tasks
-status -tasksa
-status -tasksa
-status -tasks
-status -tasks
-status -tasksa
-status -tasks
-status -tasks
-status -tasksa
-status -tasks
-shutdown now
-server input input
-setup
-status
-load.hosts.wave1
-load.hosts.wave2
-load.hosts.wave3
-status
-show.label
-add.label MD08.200906.v0
-status
-control status
-run
-status
-show.label
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-stats
-status
-status -tasks
-status -tasks
-status -taskstats
-status -tasks
-status -taskstats
-status -tasks
-status -task
-status -tasks
-echo {100*60*1.5}
-status -tasks
-status
-status -tasks
-show.label
-add.label MD06.200906.v0
-add.label MD07.200906.v0
-add.label MD09.200906.v0
-show.label
-status -tasks
-status
-status -tasks
-stop
-del.label dummy
-show.label
-run
-statu
-status -tasks
-run
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -taskss
-status -tasks
-status -tasks
-status -tasks
-status -task
-control status
-control status
-status -task
-status -taskstats
-status -task
-status -tasks
-status -tasks
-load.hosts.wave3
-status -tasks
-status -tasks
-stop
-show.labels
-del.label MD06.200906.v0
-del.label MD07.200906.v0
-del.label MD09.200906.v0
-show.label
-run
-status -tasks
-status -task
-status -tasks
-status -tasks
-status -taskstats
-status -tasks
-status -tasks
-status -taskstats
-control status
-show.label
-add.label noise.20090626
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-stop
-status -taskss
-status -taskss
-status -taskss
-control status
-status -tasks
-status -taskss
-status -taskss
-status -taskss
-status -taskss
-status -taskss
-server input input
-load.hosts.compute
-status
-control status
-control status
-control status
-control status
-control status
-status -taskss
-status -taskss
-status -taskss
-control status
-control status
-run
-status
-status
-show.label
-status
-status
-status -tasks
-status -tasks
-control status
-status -tasks
-status -tasks
-status -taskss
-stop
-control status
-shutdown now
-server input input
-setup
-add.label noise.20090626
-status
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-status
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-stop
-shutdown now
-server input input
-setup
-status
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-status
-control status
-control status
-control status
-control status
-status
-show.label
-add.label noise.20090626
-run
-status
-run
-status
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -taskstats
-status -tasks
-show.label
-stop
-add.label MD08.200906.v0
-run
-status
-status -tasks
-status -task
-status -tasks
-show.label
-stop
-add.label MD06.200905.v0
-add.label MD07.200905.v0
-add.label MD08.200905.v0
-add.label MD07.200906.v0
-add.label MD09.200906.v0
-show.label
-status -tasks
-status -task
-run
-status -tasks
-status -tas
-status -task
-status -tasks
-status -tasks
-status -task
-status -tasks
-stop
-status -tasks
-chip.off
-warp.off
-fake.off
-camera.off
-status -tasks
-status -tasks
-status -tasks
-show.label
-del.label dummy
-del.label MD06.200905.v0
-del.label MD07.200905.v0
-del.label MD08.200905.v0
-del.label MD09.200905.v0
-show.label
-del.label MD09.200906.v0
-del.label MD07.200906.v0
-show.label
-run
-status -tasks
-status -taskss
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-show.label
-stop
-server module magic.pro
-shutdown now
-server module magic.pro
-server input input
-status -tasks
-setup
-server input input
-setup
-server input input
-setup
-status
-add.label noise.20090626
-status
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-run
-status
-status
-status
-status
-status
-status
-stop
-status -tasks
-magic.off
-status
-shutdown now
-status
-status shutdown now
-shutdown now
-server input input
-setup
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-status
-server input input
-setup
-load.hosts.wave2
-load.hosts.wave23
-load.hosts.wave3
-load.hosts.compute
-status
-add.label mops.20090701
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status
-shutdown now
-server input input
-setup
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-add.label MD08.200904.v1
-add.label MD08.200905.v1
-add.label MD08.200906.v1
-chip.revert.off
-status
-control status
-control status
-control status
-control status
-control status
-control status
-status
-run
-show.label
-status
-status
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -task
-status -tasks
-status -tasks
-status
-stop
-echo {0.26*5.2}
-echo {0.26*5.}
-status
-run
-status
-status
-show.label
-status
-stop
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status
-stop
-server input input
-warp.revert.off
-server input input
-warp.revert.off
-status
-run
-status
-status
-status
-status -tasks
-status -taskstats
-status -taskstats
-status
-status -taskstats
-status -tasks
-status -tasks
-stop
-magic.off
-status -tasks
-run
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status
-show.label
-add.label MD08.200906.v1.test
-status
-stop
-magic.on
-run
-status
-status
-status
-status
-status
-status
-status
-status
-status
-echo {50*8*4800*40}
-echo {50*8*4800*40/(4800^2*60)}
-status
-status
-stop
-run
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status
-status
-status
-control status
-quti
-stop
-status
-show.label
-del.label MD08.200906.v1.test
-show.label
-del.label MD08.200904.v1
-del.label MD08.200905.v1
-show.label
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -task
-show.label
-add.label MD06.200904.v1
-add.label MD06.200905.v1
-add.label MD06.200906.v1
-add.label MD07.200904.v1
-add.label MD07.200905.v1
-add.label MD07.200906.v1
-show.label
-status -task
-status -task
-status -task
-status -task
-status -tasks
-status -tasks
-load.hosts.wave3
-load.hosts.compute
-status -tasks
-status -tasks
-status -task
-control status
-status -tasks
-status -tasks
-status -task
-status -tasks
-status -tasks
-status
-shutdown now
-server input input
-setup
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-run
-status
-show.label
-stop
-add.label MD08.200906.t1
-run
-status
-status
-stop
-status
-show.label
-run
-status
-status
-status
-status -taskstats
-status
-status
-status
-status
-status
-status
-stop
-show.label
-add.label MD08.200906.v1
-del.label MD08.200906.t1
-status
-run
-status
-status
-status -tsks
-status -tasks
-status -tasks
-stop
-warp.revert.off
-run
-status -tasks
-status -task
-status -task
-status -tasks
-echo {600*600}
-control status
-echo {600*600/50}
-status -tasks
-show.label
-stop
-add.label MD06.200906.v1
-add.label MD07.200906.v1
-show.label
-run
-status
-status -tasks
-status -tasks
-status
-status -tasks
-status -tasks
-status
-status
-status -tasks
-status -task
-show.label
-control status
-status -task
-status -tasks
-status -task
-status -tasks
-status -task
-status -tasks
-status -tasks
-status -taskstats
-echo {300*80*50/50}
-echo {300*80*50/50/3600}
-show.label
-status
-stop
-add.label MD07.200904.v1
-add.label MD06.200904.v1
-add.label MD06.200905.v1
-add.label MD07.2009045.v1
-del.label MD07.2009045.v1
-add.label MD07.200905.v1
-show.label
-status
-run
-status
-status -tasks
-echo {497*80*50/50}
-echo {497*80*50/50/3600}
-status -tasks
-status -tasks
-status -tasks
-show.label
-stop
-del.label MD07.200904.v1
-del.label MD07.200905.v1
-del.label MD06.200904.v1
-del.label MD06.200905.v1
-show.label
-status
-run
-status
-load.hosts.compute
-load.hosts.wave3
-status
-control status
-show.label
-add.label MD06.200904.v1
-add.label MD07.200904.v1
-add.label MD08.200904.v1
-add.label MD06.200905.v1
-add.label MD07.200905.v1
-add.label MD08.200905.v1
-show.label
-status -tasks
-status
-control status
-status -tasks
-status -task
-control status
-control status
-pwd
-cat input
-!cat input
-load.hosts.wave2
-control status
-status -tasks
-status -taskstats
-status -task
-control status
-show.labels
-echo {58*80*50/100}
-show.labels
-del.label dummy
-del.label MD06.200906.v1
-del.label MD07.200906.v1
-show.labels
-del.label MD07.200905.v1
-del.label MD08.200905.v1
-del.label MD06.200905.v1
-show.label
-del.label MD07.200904.v1
-del.label MD08.200904.v1
-status
-control status
-show.label
-status
-control status
-status -tasks
-status
-control status
-show.label
-status
-status
-status -tasks
-status -tasks
-status
-status
-status
-status
-show.label
-del.label MD06.200904.v1
-status
-status
-show.label
-stop
-show.label
-add.label MD07.200906.v1
-add.label MD06.200906.v1
-show.label
-status
-run
-status
-status
-control status
-control status
-control status
-status
-status -taskstats
-status -taskstats
-control status
-control status
-status
-stop
-server input input
-adjust.magic
-status
-status -taskstats
-run
-status
-status
-status -taskstats
-status -taskstats
-show.label
-stop
-add.label MD07.200904.v1
-add.label MD08.200904.v1
-run
-status
-status -taskstats
-status
-status -taskstats
-status
-control status
-status -tasks
-status -tasks
-echo {400*80}
-status -tasks
-status -taskstats
-status -taskstatsinfo
-stop
-server input input
-adjust.magic
-status
-run
-status
-status
-status
-status -tasks
-status -tasks
-get.poll
-status -task
-status -task
-status -task
-control status
-control status
-status -tasks
-control status
-stop
-server input input
-adjust.magic
-run
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -taskstats
-status -tasks
-control status
-status -task
-status -tasks
-status -tasks
-echo {6/25}
-echo {100*0.24}
-echo {400*24}
-echo {400*24/3600}
-status -tasks
-status -tasks
-status -task
-status -tasks
-status -tasks
-status -tasks
-status -task
-status -task
-status -taskstats
-status -tasks
-echo {58287*0.25}
-echo {58287*0.25 / 3600}
-status -tasks
-status -taskss
-status -taskss
-control status
-status -taskss
-status -tasks
-show.book magicToProcess
-status -tasks
-stop
-server module magic.pro
-status
-run
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status -taskinfo
-status
-status
-control status
-show.book magicToProcess
-status
-status -taskinfo
-status -taskinfo
-stop
-chip.off
-cam.off
-camera.off
-warp.off
-stack.off
-status
-fake.off
-status
-run
-status
-status
-status
-status
-show.label
-status
-stop
-server module magic.pro
-run
-status
-status
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -taskstats
-control status
-control status
-status -tasks
-status -tasks
-status -tasks
-status -taskstats
-status -tasks
-status -tasks
-date; status -tasks
-date; status -tasks
-echo {(12765 - 10147)/(7.5*60)}
-echo {(7.5*60)/(12765 - 10147)}
-show.labels
-stop
-del.label MD08.200906.v1
-del.label MD07.200906.v1
-del.label MD07.200904.v1
-del.label MD08.200904.v1
-show.label
-run
-status
-echo {17500-13200}
-echo {(17500-13200)*0.17}
-status
-date; status -tasks
-status
-show.label
-add.label MD07.200906.v1
-add.label MD08.200906.v1
-status -tasks
-status -tasks
-control status
-show.label
-add.label MD06.200905.v1
-add.label MD07.200905.v1
-add.label MD08.200905.v1
-status
-status -tasks
-stop
-run
-status
-status
-status -tasks
-status -tasks
-status
-control status
-control status
-show.labels
-stop
-del.label MD06.200905.v1
-del.label MD07.200905.v1
-del.label MD08.200905.v1
-add.label MD08.200904.v1
-add.label MD07.200904.v1
-show.label
-add.label MD06.200905.v1
-add.label MD07.200905.v1
-add.label MD08.200905.v1
-show.label
-run
-status
-status
-status
-status
-status
-status
-status
-status
-control status
-control status
-status
-status -tasks
-status -tasks
-show.labels
-status -tasks
-control -status
-control status
-show.label
-stop
-del.label MD06.200905.v1
-del.label MD07.200905.v1
-del.label MD08.200905.v1
-run
-status
-show.label
-show.label
-status -tasks
-status
-status -
-status -
-status -
-status
-stop
-show.label
-add.label MD06.200904.v1
-add.label MD06.200905.v1
-add.label MD07.200905.v1
-add.label MD08.200905.v1
-show.label
-run
-status
-status -tasks
-status
-status -tasks
-control status
-status
-status
-control status
-status
-status
-status
-show.label
-del.label MD06.200906.v1
-del.label MD07.200906.v1
-del.label MD08.200906.v1
-del.label MD06.200904.v1
-del.label MD07.200904.v1
-del.label MD08.200904.v1
-show.label
-statu
-statu -tasks
-statu -tasks
-statu -tasks
-status
-!magictool -dbname gpc1 -reverttree -h
-!magictool -dbname gpc1 -reverttree -magic_id 1303
-!magictool -dbname gpc1 -reverttree -magic_id 1352
-!magictool -dbname gpc1 -reverttree -magic_id 1480
-!magictool -dbname gpc1 -revertnode -label MD06.200905.v1
-!magictool -dbname gpc1 -revertnode -label MD07.200905.v1
-!magictool -dbname gpc1 -revertnode -label MD08.200905.v1
-!magictool -dbname gpc1 -revertnode -label MD06.200904.v1
-!magictool -dbname gpc1 -revertnode -label MD07.200904.v1
-!magictool -dbname gpc1 -revertnode -label MD08.200904.v1
-!magictool -dbname gpc1 -revertnode -label MD06.200906.v1
-!magictool -dbname gpc1 -revertnode -label MD07.200906.v1
-!magictool -dbname gpc1 -revertnode -label MD08.200906.v1
-server input input
-setup
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-status
-status
-control status
-status
-status
-show.label
-add.label ThreePi.S00.200906.v1
-status
-status
-status
-status
-status -tasks
-status -tasks
-status
-status -tasks
-stop
-status
-status -tasks
-run
-yur
-status
-status -tasks
-stop
-status -tasks
-status
-status
-run
-status
-status
-status -tasks
-show.labels
-status -tasks
-status -tasks
-stop
-status
-status
-shutdown now
-status
-server input input
-setup
-load.host.wave2
-load.hosts.wave2
-load.hosts.compute
-status
-camera.off
-add.label ThreePi.S00.200906.v1
-run
-status
-status
-status -tasks
-status
-status -tasks
-status -tasks
-status -
-status -tasks
-status -taskstast
-status -taskstats
-status -tasks
-status -task
-stop
-echo {1379/7}
-echo {2044/7/2}
-echo {882/7/2}
-echo {882/2}
-echo {994/6}
-echo {149+18}
-status
-status
-show.labels
-stop
-add.label MD09.200906.v1
-add.label MD09.200907.v1
-run
-status
-status -tasks
-status -tasks
-status -task
-status
-status
-status
-status -tasks
-status
-!difftool -revertdiffskyfile -dbname gpc1 -label MD09.200906.v1
-!difftool -revertdiffskyfile -dbname gpc1 -label MD09.200907.v1
-status
-status
-status
-status
-status
-status
-stop
-module magic.pro
-server module magic.pro
-status
-run
-status
-show.label
-status
-status
-status
-status -taskinfo
-status
-status -taskinfo
-status
-status -tasks
-status -tasks
-status
-shutdown now
-status
-shutdown now
-status
-server input input
-setup
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-run
-status
-show.label
-add.label stdscience.darktest.20090717
-status
-status
-stop
-del.label stdscience.darktest.20090717
-run
-status
-status
-stop
-add.label stdscience.darktest.20090717
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-control status
-status -tasks
-stop
-control host off ipp026
-control status
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-stop
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -task
-run
-status -tasks
-status -tasks
-status -task
-status -tasks
-status -tasks
-status -tasks
-show.label
-add.label stdscience.darktest.20090717.v2
-status -tasks
-status -tasks
-status -task
-status -task
-status -task
-status -task
-status -task
-status -tasks
-status
-show.label
-add.label ThreePi.S00.200906.v1
-status
-show.labels
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-status
-status -taskstatsreset
-status -tasks
-status
-status -tasks
-stop
-warp.off
-camera.off
-show.label
-status -task
-add.label stdscience.darktest.20090717.v0
-status
-module magic.pro
-server module magic.pro
-status
-run
-status
-run
-status
-status
-status -tasks
-status -tasks
-status -tasks
-status -tasks
-!magictool -h
-!magictool -dbname gpc1 -reverttree -h
-!magictool -dbname gpc1 -reverttree -magic_id 1653
-!magictool -dbname gpc1 -reverttree -magic_id 1655
-status -tasks
-!magictool -dbname gpc1 -revertnode -h
-!magictool -dbname gpc1 -revertnode -label stdscience.darktest.20090717.v2
-st
-status -tasks
-show.label
-status -task
-status -task
-control status
-status -taskinfo
-status -task
-status -tasks
-status -tasks
-!magictool -dbname gpc1 -revertnode -label stdscience.darktest.20090717.v0
-status
-sto
-status
-show.labels
-del.label stdscience.darktest.20090717
-del.label stdscience.darktest.20090717.v0
-del.label stdscience.darktest.20090717.v2
-del.label ThreePi.S00.200906.v1
-show.labels
-add.label stdscience.darktest.20090717.v3
-status
-status -taskstatsreset
-status
-run
-status
-status
-status
-status
-status
-stop
-camera.on
-run
-status
-status
-status
-status
-status
-echo {100000*0.001}
-echo {100000*0.05}
-echo {100000*0.05/12}
-status
-status
-status
-stop
-status
-!chiptool -revertprocessedimfile -dbname gpc1 -label stdscience.darktest.20090717.v3
-run
-status
-status
-status
-status
-status
-status
-status
-status
-stop
-status
-status
-controller status
-status
-shutdown now
-server input input
-setup
-status
-load.hosts.wave1
-load.hosts.wave2
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.wave3
-load.hosts.compute
-load.hosts.compute
-run
-status
-status
-status
-status
-status
-controller status
-add.label stdscience.diffclip.20090721
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-server module magic.pro
-add label stdscience.diffclip.20090721.magic
-add.label stdscience.diffclip.20090721.magic
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-show.label
-add.label stdscience.diffclip.20090721.magic
-add.label stdscience.diffclip.20090721.magic
-status
-!cat input
-show.book magicTree
-status
-show.book magicToTree
-status
-stop
-magic.off
-status
-stop
-magic.on
-status
-run
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-stop
-shutdown now
-server input input
-setup
-status
-shutdown now
-server input input
-setup
-status
-add.label stdscience.diffclip.20090721.magic
-run
-status
-status
-status
-status
-status
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-add.label pattern.20090722.magic
-status
-status
-status
-add.label STS.090724
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-status
-controller status
-status
-controller status
-controller status
-controller status
-show.label
-show.label
-status
-controller status
-controller status
-load.hosts.wave1
-load.hosts.wave2
-load.hosts.wave3
-load.hosts.compute
-controller status
-controller status
-controller status
-controller status
-controller status
-controller status
-controller status
-controller status
-controller status
-controller status
-status
-status
-status
-status
-show.label
-status
-status -tasks
-stop
-chip.off
-run
-stop
-camera.off
-run
-stop
-chip..on
-chip.on
-camera.on
-run
-status
-status -tasks
-server input input
-setup
-load.host.compute
-run
-load.host.comput
-load.host.compute
-load.hosts.compute
-load.hosts.wave1
-load.hosts.wave2
-load.hosts.wave3
-controller status
-status
-show labels
-show label
-show.labels
-add.label STS.090724
-add.label ThreePi_SouthernRegion.090724
-status
-show.labels
-show.labels
-status
-controller status
-controller status
-status
-show.labels
-stop
-status
-status
-controller status
-controller status
-controller status
-controller status
-controller status
-controller status
-status
-status
-status
-controller status
-load.hosts.wave3
-load.hosts.wave2
-load.hosts.wave1
-controller status
-load.hosts.compute
-controller status
-status
-controller status
-controller status
-status
-status
-status
-load.hosts.compute
-status
-status
-server input input
Index: branches/tap_branches/operations/stdscience/3pi.chip
===================================================================
--- branches/tap_branches/operations/stdscience/3pi.chip	(revision 26066)
+++ 	(revision )
@@ -1,17 +1,0 @@
-#!/bin/csh -f
-
-# run the ThreePi data for June 2009 for the sky region 18h:20h,-30:-15 (S00)
-
-set options = "-simple -dbname gpc1 -definebyquery -ra_min 270.0 -ra_max 300.0 -decl_min -35.0 -decl_max -15.0 -set_end_stage warp -set_tess_id RINGS.V0 -set_reduction STDSCIENCE_V0 -comment ThreePi%"
-
-# June 2009 (only g & r in this region & time range)
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-13T00:00:00 -dateobs_end 2009-06-13T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090613.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-16T00:00:00 -dateobs_end 2009-06-16T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090616.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-17T00:00:00 -dateobs_end 2009-06-17T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090617.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-20T00:00:00 -dateobs_end 2009-06-20T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090620.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-22T00:00:00 -dateobs_end 2009-06-22T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090622.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-25T00:00:00 -dateobs_end 2009-06-25T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090625.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-27T00:00:00 -dateobs_end 2009-06-27T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090627.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-28T00:00:00 -dateobs_end 2009-06-28T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090628.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-29T00:00:00 -dateobs_end 2009-06-29T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090629.stdsci.v1 
-chiptool $options -set_label ThreePi.S00.200906.v1 -dateobs_begin 2009-06-30T00:00:00 -dateobs_end 2009-06-30T23:59:59 -set_workdir neb://@HOST@.0/gpc1/20090630.stdsci.v1 
Index: branches/tap_branches/operations/stdscience/3pi.labels
===================================================================
--- branches/tap_branches/operations/stdscience/3pi.labels	(revision 26066)
+++ 	(revision )
@@ -1,5 +1,0 @@
-add.label ThreePi.Run2.g.v0
-add.label ThreePi.Run2.r.v0
-add.label ThreePi.Run2.i.v0
-add.label ThreePi.Run2.y.v0
-add.label ThreePi.Run2.z.v0
Index: branches/tap_branches/operations/stdscience/3pi.t2.chip
===================================================================
--- branches/tap_branches/operations/stdscience/3pi.t2.chip	(revision 26066)
+++ 	(revision )
@@ -1,12 +1,0 @@
-#!/bin/csh -f
-
-# run the ThreePi data for June 2009 for the sky region 295.0 - 300.0, -10.0 - -5.0
-
-set options = "-simple -dbname gpc1 -definebyquery"
-set options = "$options -ra_min 295.0 -ra_max 300.0 -decl_min -20.0 -decl_max -15.0"
-set options = "$options -set_end_stage warp -set_tess_id RINGS.V0 -set_reduction STDSCIENCE_V0 -comment ThreePi%"
-set options = "$options -dateobs_begin 2009-06-20T12:30:00 -dateobs_end 2009-06-20T14:00:00"
-# set options = "$options -pretend"
-
-# June 2009 (only g & r in this region & time range)
-chiptool $options -set_label stdscience.darktest.20090717.v3  -set_workdir neb://@HOST@.0/gpc1/stdscience.darktest.20090717 
Index: branches/tap_branches/operations/stdscience/3pi.test.chip
===================================================================
--- branches/tap_branches/operations/stdscience/3pi.test.chip	(revision 26066)
+++ 	(revision )
@@ -1,12 +1,0 @@
-#!/bin/csh -f
-
-# run the ThreePi data for June 2009 for the sky region 295.0 - 300.0, -10.0 - -5.0
-
-set options = "-simple -dbname gpc1 -definebyquery"
-set options = "$options -ra_min 295.0 -ra_max 300.0 -decl_min -20.0 -decl_max -15.0"
-set options = "$options -set_end_stage warp -set_tess_id RINGS.V0 -set_reduction STDSCIENCE_DARKTEST -comment ThreePi%"
-set options = "$options -dateobs_begin 2009-04-01T00:00:00 -dateobs_end 2009-07-01T00:00:00"
-# set options = "$options -pretend"
-
-# June 2009 (only g & r in this region & time range)
-chiptool $options -set_label stdscience.darktest.20090717.v2  -set_workdir neb://@HOST@.0/gpc1/stdscience.darktest.20090717 
Index: branches/tap_branches/operations/stdscience/3pi.test.dm
===================================================================
--- branches/tap_branches/operations/stdscience/3pi.test.dm	(revision 26066)
+++ 	(revision )
@@ -1,54 +1,0 @@
-#!/bin/csh -f
-
-if ($#argv != 1) then
-  echo "USAGE: 3pi.test.dm (version)"
-  exit 2
-endif
-set got_version = 0
-
-# run the ThreePi data for June 2009 for the sky region 295.0 - 300.0, -10.0 - -5.0
-
-if (0) then
-set options = "-simple -dbname gpc1 -definewarpwarp"
-set options = "$options -ra_min 295.0 -ra_max 300.0 -decl_min -20.0 -decl_max -15.0"
-set options = "$options -distance 0.1"
-set options = "$options -timediff 1800"
-set options = "$options -reduction WARPWARP"
-set options = "$options -good_frac 0.2"
-set options = "$options -rerun -available"
-# set options = "$options -pretend"
-endif
-
-if ("$1" == "test.v2 done") then
-  set options = "$options -input_label stdscience.darktest.20090717.v2"
-  set options = "$options -template_label stdscience.darktest.20090717.v2"
-  set options = "$options -label stdscience.darktest.20090717.v2"
-  set got_version = 1
-endif
-
-if ("$1" == "test.v0 done") then
-  set options = "$options -input_label ThreePi.S00.200906.v1"
-  set options = "$options -template_label ThreePi.S00.200906.v1"
-  set options = "$options -label stdscience.darktest.20090717.v0"
-  set got_version = 1
-endif
-
-if ("$1" == "magic.v0 done") then
-  set label = stdscience.darktest.20090717.v0
-  magictool -dbname gpc1 -definebyquery -workdir /data/ipp023.0/gpc1_destreak/$label -rerun -label $label -diff_label $label
-  exit 0
-endif
-
-if ("$1" == "magic.v2 done") then
-  set label = stdscience.darktest.20090717.v2
-  magictool -dbname gpc1 -definebyquery -workdir /data/ipp023.0/gpc1_destreak/$label -rerun -label $label -diff_label $label
-  exit 0
-endif
-
-if ($got_version == 0) then
-  echo "unknown version $1 (allowed: test.v0, test.v2)"
-  exit 2
-endif
-
-# June 2009 (only g & r in this region & time range)
-difftool $options -workdir neb://@HOST@.0/gpc1/stdscience.darktest.20090717 
Index: branches/tap_branches/operations/stdscience/input
===================================================================
--- branches/tap_branches/operations/stdscience/input	(revision 26066)
+++ branches/tap_branches/operations/stdscience/input	(revision 27836)
@@ -10,12 +10,11 @@
   module diff.pro
   module magic.pro
-  
-  # turn destreaking off. we are running this in a separate pantasks for now
-  magic.ds.off
+  module destreak.pro
+  module dist.pro
+  module rcserver.pro
 
-  # module survey.pro
+  module survey.pro
 
   module site.mhpcc.pro
-
   init.copy.mhpcc on
   queueload tmp -x "cat $MODULES:0/ipphosts.mhpcc.config"
@@ -25,37 +24,26 @@
   # init.site (we do not use init.site because it loads the hosts)
 
+  # magic.ds.off
+
   add.database gpc1
   add.label dummy
-  set.poll 100
-end
-
-macro set.poll
-  if ($0 != 2)
-    echo "USAGE:set.poll (value)"
-    break
-  end
- 
-  $POLLLIMIT = $1
-end
-
-macro get.poll
-  echo "poll limit: $POLLLIMIT"
+  set.poll 180
 end
 
 macro load.hosts.wave1
-  controller host add ipp005 -threads 4
+  controller host add ipp005 -threads 4 
   controller host add ipp006 -threads 4
-# controller host add ipp007 -threads 4 (respawning?)
+  controller host add ipp007 -threads 4 
 # controller host add ipp008 -threads 4 (flaky)
-  controller host add ipp009 -threads 4
+# controller host add ipp009 -threads 4 (problem with cpu 3)
   controller host add ipp010 -threads 4
   controller host add ipp011 -threads 4
   controller host add ipp012 -threads 4
   controller host add ipp013 -threads 4
-# controller host add ipp014 -threads 4
+  controller host add ipp014 -threads 4
 # controller host add ipp016 -threads 4 (flaky)
   controller host add ipp017 -threads 4
 # controller host add ipp018 -threads 4 (flaky)
-# controller host add ipp019 -threads 4 (nebulous)
+  controller host add ipp019 -threads 4 
   controller host add ipp020 -threads 4
   controller host add ipp021 -threads 4
@@ -107,5 +95,5 @@
   controller host add ippc05 -threads 4
   controller host add ippc06 -threads 4
-# controller host add ippc07 -threads 4 (pantasks - register)
+  controller host add ippc07 -threads 4 
   controller host add ippc08 -threads 4
   controller host add ippc09 -threads 4
@@ -118,6 +106,6 @@
   controller host add ippc16 -threads 4
   controller host add ippc17 -threads 4
-  controller host add ippc18 -threads 4
-  controller host add ippc19 -threads 4
+#  controller host add ippc18 -threads 4 (ipp home)
+#  controller host add ippc19 -threads 4 (ipp home)
 end
 
@@ -154,4 +142,16 @@
 macro chip.revert.off
   task chip.revert
+    active false
+  end
+end
+
+macro camera.revert.on
+  task camera.revert
+    active true
+  end
+end
+
+macro camera.revert.off
+  task camera.revert
     active false
   end
Index: branches/tap_branches/operations/stdscience/input2
===================================================================
--- branches/tap_branches/operations/stdscience/input2	(revision 26066)
+++ 	(revision )
@@ -1,114 +1,0 @@
-
-macro setup
-  module pantasks.pro
-
-#  module chip.pro
-#  module camera.pro
-#  module fake.pro
-  module warp.pro
-#  module diff.pro
-
-  # module survey.pro
-
-  module site.mhpcc.pro
-
-  init.copy.mhpcc on
-  queueload tmp -x "cat $MODULES:0/ipphosts.mhpcc.config"
-  ipptool2book tmp ipphosts -key camera
-
-  # XXX merge the above into init.site more cleanly (careful with summit copy stuff)
-  # init.site (we do not use init.site because it loads the hosts)
-
-  add.database gpc1
-  add.label dummy
-  set.poll 100
-end
-
-macro set.poll
-  if ($0 != 2)
-    echo "USAGE:set.poll (value)"
-    break
-  end
- 
-  $POLLLIMIT = $1
-end
-
-macro get.poll
-  echo "poll limit: $POLLLIMIT"
-end
-
-macro load.hosts
-  controller host add ipp005 -threads 4
-  controller host add ipp006 -threads 4
-  controller host add ipp007 -threads 4
-# controller host add ipp008 (flaky)
-  controller host add ipp009 -threads 4
-  controller host add ipp010 -threads 4
-  controller host add ipp011 -threads 4
-  controller host add ipp012 -threads 4
-  controller host add ipp013 -threads 4
-# controller host add ipp014 (flaky)
-  controller host add ipp015 -threads 4
-# controller host add ipp016 (flaky)
-  controller host add ipp017 -threads 4
-  controller host add ipp018 -threads 4
-# controller host add ipp019 (nebulous)
-  controller host add ipp020 -threads 4
-  controller host add ipp021 -threads 4
-  controller host add ipp023 -threads 4
-  controller host add ipp024 -threads 4
-  controller host add ipp025 -threads 4
-  controller host add ipp026 -threads 4
-  controller host add ipp027 -threads 4
-  controller host add ipp028 -threads 4
-  controller host add ipp029 -threads 4
-  controller host add ipp030 -threads 4
-  controller host add ipp031 -threads 4
-  controller host add ipp032 -threads 4
-  controller host add ipp033 -threads 4
-  controller host add ipp034 -threads 4
-  controller host add ipp035 -threads 4
-  controller host add ipp036 -threads 4
-end
-
-macro load.hosts.wave2
-  controller host add ipp015 -threads 4
-  controller host add ipp017 -threads 4
-  controller host add ipp023 -threads 4
-  controller host add ipp024 -threads 4
-  controller host add ipp026 -threads 4
-  controller host add ipp027 -threads 4
-  controller host add ipp028 -threads 4
-  controller host add ipp029 -threads 4
-  controller host add ipp030 -threads 4
-  controller host add ipp031 -threads 4
-  controller host add ipp032 -threads 4
-  controller host add ipp033 -threads 4
-  controller host add ipp034 -threads 4
-  controller host add ipp035 -threads 4
-  controller host add ipp036 -threads 4
-end
-
-macro show.book
-  if ($0 != 2)
-   echo "USAGE: show.book (book)"
-   break
-  end
-
-  book npages $1 -var npages
-  for i 0 $npages
-    book getpage $1 $i -var pagename
-    book listpage $1 $pagename
-  end
-
-  echo "npages: $npages"
-end
-
-macro del.page.from.book
-  if ($0 != 3)
-   echo "USAGE: show.book (book) (page)"
-   break
-  end
-
-  book delpage $1 $2
-end
Index: branches/tap_branches/operations/stdscience/notes.txt
===================================================================
--- branches/tap_branches/operations/stdscience/notes.txt	(revision 26066)
+++ 	(revision )
@@ -1,7 +1,0 @@
-Re-process diffs from ThreePi_SouthernRegion and ThreePi_NorthernRegion with improved convolution choice algorithm (trunk@r25120) by PAP:
-
-difftool -definewarpwarp -distance 0.1 -good_frac 0.1 -timediff 3600 -input_label ThreePi_SouthernRegion.090724 -template_label ThreePi_SouthernRegion.090724 -label ThreePi_SouthernRegion.090818 -workdir neb://@HOST@.0/gpc1/ThreePi_SouthernRegion.090818 -dbname gpc1
-difftool -definewarpwarp -distance 0.1 -good_frac 0.1 -timediff 3600 -input_label ThreePi_NorthernRegion.090729 -template_label ThreePi_NorthernRegion.090729 -label ThreePi_NorthernRegion.090818 -workdir neb://@HOST@.0/gpc1/ThreePi_NorthernRegion.090818 -dbname gpc1
-
-
-
