Index: /trunk/tools/heather/PV3STloaders/#createPV3ST_sub.pl#
===================================================================
--- /trunk/tools/heather/PV3STloaders/#createPV3ST_sub.pl#	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/#createPV3ST_sub.pl#	(revision 40362)
@@ -0,0 +1,157 @@
+#!/usr/bin/env perl
+use vars qw ($queueOB, $queueST);
+
+
+while (<>) {
+#example line of the OB.txt file:
+#187   360   28    35    PSPS_PV3_OB_SLICE_22 3800.5985297 ipp101.0
+#settings for the queuer
+my @split = split (/\s+/, $_);
+
+$minra = $split[0];
+$maxra = $split[1];
+$mindec = $split[2];
+$maxdec = $split[3];
+$datastore = $split[4];
+$drive = $split[6];
+
+$pspssurvey = 'PV3';
+$ippsurvey = '3PI';
+$datarelease = '3';
+#$datastore_stub = 'PSPS_PV3_TEST_';
+$dvodb = 'LAP.PV3.MERGE';
+$dvodb_path = '/data/ipp094.0/eugene/pv3.cam.20150607/catdir.master';
+
+
+$skychunk = $datastore; 
+
+#@stage = ("OB","P2","ST","IN","FO","FW");
+@stage = ("ST");
+   $queueP2 = 0;
+   $queueST = 0;
+   $queueOB = 0;
+   $queueFW = 0;
+   $queueFO = 0;
+
+
+$date1='2007-05-01';
+$date2='2016-09-01';
+
+foreach $mid (@stage) {
+    $loadername = $skychunk;
+   $main::queueP2 = 0;
+   $main::queueST = 0;
+   $main::queueOB = 0;
+   $main::queueFW = 0;
+   $main::queueFO = 0;
+
+    if ($mid =~ /ST/) {
+	$main::queueP2 = 0;
+	$main::queueST = 1;
+	$main::queueOB = 0;
+	$main::queueFW = 0;
+	$main::queueFO = 0;
+    }
+
+
+ #  print "$mid $main::queueP2  $main::queueST $main::queueOB $main::queueFW $main::queueFO\n";
+
+$date = "2016-04-26";
+
+#md 04 is 150 2.2
+
+$box = 1;
+
+$rabox = $maxra - $minra;
+$decbox = $maxdec -$mindec;
+
+
+#first check if $maxra - $minra is a multiple of box
+if ($rabox % $box == 0) {
+#    print "ra boxsize seems ok\n";
+} else {
+    print "ra boxsize not ok\n";
+}
+if ($decbox % $box == 0) {
+#    print "dec boxsize seems ok \n";
+} else {
+    print "dec boxsize not ok\n";
+}
+
+$compra = ($maxra-$minra) % $box;
+if ($compra == 0) {
+#    print "min/max ra is a multiple of $box\n";
+} else {
+    print "min/max ra is not a multiple of $box\n";
+}
+
+$compdec = ($maxdec - $mindec) % $box;
+if ($compdec == 0) {
+ #   print "min/max dec is a multiple of $box\n";
+} else {
+    print "min/max dec is not a multiple of $box\n";
+}
+    $segments = 5; 
+
+    $raseg = ($maxra-$minra)/$segments;
+    for (my $iii=1; $iii <= $segments; $iii++) {
+
+	$ra_thing = 
+
+    
+	#$mid = "ALL";
+	$file = "$skychunk_$snum.dat";
+	open FILE, ">", $file or die $!;
+
+		
+d
+	print FILE "$skychunk_$snum\n";  #skychunk name
+	print FILE "$datastore\n";                     #datstore product
+	print FILE "IPP_PSPS\n";                       #datastore type
+	print FILE "1\n";                              #publish to datastore
+	print FILE "$dvodb\n";                         #dvolabel
+	print FILE "$dvodb_path\n";                    #dvopath
+#	print FILE "$minra\n";                            #rmin 
+	$ra1 = $ra + $rabox;                      #rmax 
+#	print FILE "$maxra\n";                           
+	$minraseg = $minra + $raseg*($iii-1);
+	$maxraseg = $maxra - $raseg*($segments-$iii);
+	print FILE "$minraseg\n";
+	print FILE "$maxraseg\n";
+	print FILE "$mindec\n";                           #decmin 
+	$dec1 = $dec + $decbox;  
+	print FILE "$maxdec\n";                          #decmax
+	print FILE "$box\n";                           #box
+	print FILE "/data/$drive/ipptopsps/$dvodb\n";              #output dir
+	print FILE "3\n";                              #datarelease
+	print FILE "1\n";                              #delete local
+	print FILE "1\n";                              #delete datastore
+	print FILE "1\n";                              #delete dxlayer
+	print FILE "$date\n";                          #epoch wtf
+	print FILE "$ippsurvey\n";                     #survey
+	print FILE "$pspssurvey\n";                    #pspssurvey
+	print FILE "$main::queueP2\n";                              # queueP2
+	print FILE "$main::queueST\n";                              #queuest
+	print FILE "$main::queueOB\n";                              #queueob
+        print FILE "0\n";#queuedf
+        print FILE "0\n";#queuedo
+        print FILE "$main::queueFW\n";#queuefw
+        print FILE "$main::queueFO\n";#queuefo
+	print FILE "1\n";                              #actibe
+	print FILE "1\n";                              #parallel
+        print FILE "use_original\n";                     #use orig for p2
+        print FILE "not_reproc\n";                       #ST 
+	print FILE "$date1\n";
+	print FILE "$date2\n";
+	close FILE;
+
+    
+	print "ippjython queue.py edit < $file\n";
+	#print "ra: $ra dec: $dec box: $box\n";
+	
+	
+	$count++;
+    }
+
+}
+}
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_00_DR2_V2
+PSPS_PV3_ST_SLICE_00
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+278
+360
+-35
+-26
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_00_DR2_V2_1
+PSPS_PV3_ST_SLICE_00
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+278
+294
+-35
+-26
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_00_DR2_V2_2
+PSPS_PV3_ST_SLICE_00
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+294
+310
+-35
+-26
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_00_DR2_V2_3
+PSPS_PV3_ST_SLICE_00
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+310
+326
+-35
+-26
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_00_DR2_V2_4
+PSPS_PV3_ST_SLICE_00
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+326
+342
+-35
+-26
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_00_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_00_DR2_V2_5
+PSPS_PV3_ST_SLICE_00
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+342
+360
+-35
+-26
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_01_DR2_V2
+PSPS_PV3_ST_SLICE_01
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+262
+278
+-35
+-26
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_01_DR2_V2_1
+PSPS_PV3_ST_SLICE_01
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+262
+265
+-35
+-26
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_01_DR2_V2_2
+PSPS_PV3_ST_SLICE_01
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+265
+268
+-35
+-26
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_01_DR2_V2_3
+PSPS_PV3_ST_SLICE_01
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+268
+271
+-35
+-26
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_01_DR2_V2_4
+PSPS_PV3_ST_SLICE_01
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+271
+274
+-35
+-26
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_01_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_01_DR2_V2_5
+PSPS_PV3_ST_SLICE_01
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+274
+278
+-35
+-26
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_02_DR2_V2
+PSPS_PV3_ST_SLICE_02
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+145
+262
+-35
+-26
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_02_DR2_V2_1
+PSPS_PV3_ST_SLICE_02
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+145
+168
+-35
+-26
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_02_DR2_V2_2
+PSPS_PV3_ST_SLICE_02
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+168
+191
+-35
+-26
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_02_DR2_V2_3
+PSPS_PV3_ST_SLICE_02
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+191
+214
+-35
+-26
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_02_DR2_V2_4
+PSPS_PV3_ST_SLICE_02
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+214
+237
+-35
+-26
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_02_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_02_DR2_V2_5
+PSPS_PV3_ST_SLICE_02
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+237
+262
+-35
+-26
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_03_DR2_V2
+PSPS_PV3_ST_SLICE_03
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+145
+-35
+-26
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_03_DR2_V2_1
+PSPS_PV3_ST_SLICE_03
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+29
+-35
+-26
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_03_DR2_V2_2
+PSPS_PV3_ST_SLICE_03
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+29
+58
+-35
+-26
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_03_DR2_V2_3
+PSPS_PV3_ST_SLICE_03
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+58
+87
+-35
+-26
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_03_DR2_V2_4
+PSPS_PV3_ST_SLICE_03
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+87
+116
+-35
+-26
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_03_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_03_DR2_V2_5
+PSPS_PV3_ST_SLICE_03
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+116
+145
+-35
+-26
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_04_DR2_V2
+PSPS_PV3_ST_SLICE_04
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+275
+360
+-26
+-21
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_04_DR2_V2_1
+PSPS_PV3_ST_SLICE_04
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+275
+292
+-26
+-21
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_04_DR2_V2_2
+PSPS_PV3_ST_SLICE_04
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+292
+309
+-26
+-21
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_04_DR2_V2_3
+PSPS_PV3_ST_SLICE_04
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+309
+326
+-26
+-21
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_04_DR2_V2_4
+PSPS_PV3_ST_SLICE_04
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+326
+343
+-26
+-21
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_04_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_04_DR2_V2_5
+PSPS_PV3_ST_SLICE_04
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+343
+360
+-26
+-21
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_05_DR2_V2
+PSPS_PV3_ST_SLICE_05
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+260
+275
+-26
+-21
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_05_DR2_V2_1
+PSPS_PV3_ST_SLICE_05
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+260
+263
+-26
+-21
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_05_DR2_V2_2
+PSPS_PV3_ST_SLICE_05
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+263
+266
+-26
+-21
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_05_DR2_V2_3
+PSPS_PV3_ST_SLICE_05
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+266
+269
+-26
+-21
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_05_DR2_V2_4
+PSPS_PV3_ST_SLICE_05
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+269
+272
+-26
+-21
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_05_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_05_DR2_V2_5
+PSPS_PV3_ST_SLICE_05
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+272
+275
+-26
+-21
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_06_DR2_V2
+PSPS_PV3_ST_SLICE_06
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+136
+260
+-26
+-21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_06_DR2_V2_1
+PSPS_PV3_ST_SLICE_06
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+136
+160
+-26
+-21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_06_DR2_V2_2
+PSPS_PV3_ST_SLICE_06
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+160
+184
+-26
+-21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_06_DR2_V2_3
+PSPS_PV3_ST_SLICE_06
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+184
+208
+-26
+-21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_06_DR2_V2_4
+PSPS_PV3_ST_SLICE_06
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+208
+232
+-26
+-21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_06_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_06_DR2_V2_5
+PSPS_PV3_ST_SLICE_06
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+232
+260
+-26
+-21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_07_DR2_V2
+PSPS_PV3_ST_SLICE_07
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+136
+-26
+-21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_07_DR2_V2_1
+PSPS_PV3_ST_SLICE_07
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+27
+-26
+-21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_07_DR2_V2_2
+PSPS_PV3_ST_SLICE_07
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+27
+54
+-26
+-21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_07_DR2_V2_3
+PSPS_PV3_ST_SLICE_07
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+54
+81
+-26
+-21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_07_DR2_V2_4
+PSPS_PV3_ST_SLICE_07
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+81
+108
+-26
+-21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_07_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_07_DR2_V2_5
+PSPS_PV3_ST_SLICE_07
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+108
+136
+-26
+-21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_08_DR2_V2
+PSPS_PV3_ST_SLICE_08
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+274
+360
+-21
+-17
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_08_DR2_V2_1
+PSPS_PV3_ST_SLICE_08
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+274
+291
+-21
+-17
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_08_DR2_V2_2
+PSPS_PV3_ST_SLICE_08
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+291
+308
+-21
+-17
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_08_DR2_V2_3
+PSPS_PV3_ST_SLICE_08
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+308
+325
+-21
+-17
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_08_DR2_V2_4
+PSPS_PV3_ST_SLICE_08
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+325
+342
+-21
+-17
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_08_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_08_DR2_V2_5
+PSPS_PV3_ST_SLICE_08
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+342
+360
+-21
+-17
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_09_DR2_V2
+PSPS_PV3_ST_SLICE_09
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+258
+274
+-21
+-17
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_09_DR2_V2_1
+PSPS_PV3_ST_SLICE_09
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+258
+261
+-21
+-17
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_09_DR2_V2_2
+PSPS_PV3_ST_SLICE_09
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+261
+264
+-21
+-17
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_09_DR2_V2_3
+PSPS_PV3_ST_SLICE_09
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+264
+267
+-21
+-17
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_09_DR2_V2_4
+PSPS_PV3_ST_SLICE_09
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+267
+270
+-21
+-17
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_09_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_09_DR2_V2_5
+PSPS_PV3_ST_SLICE_09
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+270
+274
+-21
+-17
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_10_DR2_V2
+PSPS_PV3_ST_SLICE_10
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+145
+258
+-21
+-17
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_10_DR2_V2_1
+PSPS_PV3_ST_SLICE_10
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+145
+167
+-21
+-17
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_10_DR2_V2_2
+PSPS_PV3_ST_SLICE_10
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+167
+189
+-21
+-17
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_10_DR2_V2_3
+PSPS_PV3_ST_SLICE_10
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+189
+211
+-21
+-17
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_10_DR2_V2_4
+PSPS_PV3_ST_SLICE_10
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+211
+233
+-21
+-17
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_10_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_10_DR2_V2_5
+PSPS_PV3_ST_SLICE_10
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+233
+258
+-21
+-17
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_11_DR2_V2
+PSPS_PV3_ST_SLICE_11
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+145
+-21
+-17
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_11_DR2_V2_1
+PSPS_PV3_ST_SLICE_11
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+29
+-21
+-17
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_11_DR2_V2_2
+PSPS_PV3_ST_SLICE_11
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+29
+58
+-21
+-17
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_11_DR2_V2_3
+PSPS_PV3_ST_SLICE_11
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+58
+87
+-21
+-17
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_11_DR2_V2_4
+PSPS_PV3_ST_SLICE_11
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+87
+116
+-21
+-17
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_11_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_11_DR2_V2_5
+PSPS_PV3_ST_SLICE_11
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+116
+145
+-21
+-17
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_12_DR2_V2
+PSPS_PV3_ST_SLICE_12
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+271
+360
+-17
+-12
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_12_DR2_V2_1
+PSPS_PV3_ST_SLICE_12
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+271
+288
+-17
+-12
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_12_DR2_V2_2
+PSPS_PV3_ST_SLICE_12
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+288
+305
+-17
+-12
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_12_DR2_V2_3
+PSPS_PV3_ST_SLICE_12
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+305
+322
+-17
+-12
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_12_DR2_V2_4
+PSPS_PV3_ST_SLICE_12
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+322
+339
+-17
+-12
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_12_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_12_DR2_V2_5
+PSPS_PV3_ST_SLICE_12
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+339
+360
+-17
+-12
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_13_DR2_V2
+PSPS_PV3_ST_SLICE_13
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+254
+271
+-17
+-12
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_13_DR2_V2_1
+PSPS_PV3_ST_SLICE_13
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+254
+257
+-17
+-12
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_13_DR2_V2_2
+PSPS_PV3_ST_SLICE_13
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+257
+260
+-17
+-12
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_13_DR2_V2_3
+PSPS_PV3_ST_SLICE_13
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+260
+263
+-17
+-12
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_13_DR2_V2_4
+PSPS_PV3_ST_SLICE_13
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+263
+266
+-17
+-12
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_13_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_13_DR2_V2_5
+PSPS_PV3_ST_SLICE_13
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+266
+271
+-17
+-12
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_14_DR2_V2
+PSPS_PV3_ST_SLICE_14
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+122
+254
+-17
+-12
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_14_DR2_V2_1
+PSPS_PV3_ST_SLICE_14
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+122
+148
+-17
+-12
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_14_DR2_V2_2
+PSPS_PV3_ST_SLICE_14
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+148
+174
+-17
+-12
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_14_DR2_V2_3
+PSPS_PV3_ST_SLICE_14
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+174
+200
+-17
+-12
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_14_DR2_V2_4
+PSPS_PV3_ST_SLICE_14
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+200
+226
+-17
+-12
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_14_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_14_DR2_V2_5
+PSPS_PV3_ST_SLICE_14
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+226
+254
+-17
+-12
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_15_DR2_V2
+PSPS_PV3_ST_SLICE_15
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+122
+-17
+-12
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_15_DR2_V2_1
+PSPS_PV3_ST_SLICE_15
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+24
+-17
+-12
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_15_DR2_V2_2
+PSPS_PV3_ST_SLICE_15
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+24
+48
+-17
+-12
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_15_DR2_V2_3
+PSPS_PV3_ST_SLICE_15
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+48
+72
+-17
+-12
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_15_DR2_V2_4
+PSPS_PV3_ST_SLICE_15
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+72
+96
+-17
+-12
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_15_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_15_DR2_V2_5
+PSPS_PV3_ST_SLICE_15
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+96
+122
+-17
+-12
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_16_DR2_V2
+PSPS_PV3_ST_SLICE_16
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+267
+360
+-12
+-7
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_16_DR2_V2_1
+PSPS_PV3_ST_SLICE_16
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+267
+285
+-12
+-7
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_16_DR2_V2_2
+PSPS_PV3_ST_SLICE_16
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+285
+303
+-12
+-7
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_16_DR2_V2_3
+PSPS_PV3_ST_SLICE_16
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+303
+321
+-12
+-7
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_16_DR2_V2_4
+PSPS_PV3_ST_SLICE_16
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+321
+339
+-12
+-7
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_16_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_16_DR2_V2_5
+PSPS_PV3_ST_SLICE_16
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+339
+360
+-12
+-7
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_17_DR2_V2
+PSPS_PV3_ST_SLICE_17
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+251
+267
+-12
+-7
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_17_DR2_V2_1
+PSPS_PV3_ST_SLICE_17
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+251
+254
+-12
+-7
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_17_DR2_V2_2
+PSPS_PV3_ST_SLICE_17
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+254
+257
+-12
+-7
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_17_DR2_V2_3
+PSPS_PV3_ST_SLICE_17
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+257
+260
+-12
+-7
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_17_DR2_V2_4
+PSPS_PV3_ST_SLICE_17
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+260
+263
+-12
+-7
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_17_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_17_DR2_V2_5
+PSPS_PV3_ST_SLICE_17
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+263
+267
+-12
+-7
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_18_DR2_V2
+PSPS_PV3_ST_SLICE_18
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+125
+251
+-12
+-7
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_18_DR2_V2_1
+PSPS_PV3_ST_SLICE_18
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+125
+150
+-12
+-7
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_18_DR2_V2_2
+PSPS_PV3_ST_SLICE_18
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+150
+175
+-12
+-7
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_18_DR2_V2_3
+PSPS_PV3_ST_SLICE_18
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+175
+200
+-12
+-7
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_18_DR2_V2_4
+PSPS_PV3_ST_SLICE_18
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+200
+225
+-12
+-7
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_18_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_18_DR2_V2_5
+PSPS_PV3_ST_SLICE_18
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+225
+251
+-12
+-7
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_19_DR2_V2
+PSPS_PV3_ST_SLICE_19
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+125
+-12
+-7
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_19_DR2_V2_1
+PSPS_PV3_ST_SLICE_19
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+25
+-12
+-7
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_19_DR2_V2_2
+PSPS_PV3_ST_SLICE_19
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+25
+50
+-12
+-7
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_19_DR2_V2_3
+PSPS_PV3_ST_SLICE_19
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+50
+75
+-12
+-7
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_19_DR2_V2_4
+PSPS_PV3_ST_SLICE_19
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+75
+100
+-12
+-7
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_19_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_19_DR2_V2_5
+PSPS_PV3_ST_SLICE_19
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+100
+125
+-12
+-7
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_20_DR2_V2
+PSPS_PV3_ST_SLICE_20
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+264
+360
+-7
+-1
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_20_DR2_V2_1
+PSPS_PV3_ST_SLICE_20
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+264
+283
+-7
+-1
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_20_DR2_V2_2
+PSPS_PV3_ST_SLICE_20
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+283
+302
+-7
+-1
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_20_DR2_V2_3
+PSPS_PV3_ST_SLICE_20
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+302
+321
+-7
+-1
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_20_DR2_V2_4
+PSPS_PV3_ST_SLICE_20
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+321
+340
+-7
+-1
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_20_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_20_DR2_V2_5
+PSPS_PV3_ST_SLICE_20
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+340
+360
+-7
+-1
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_21_DR2_V2
+PSPS_PV3_ST_SLICE_21
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+248
+264
+-7
+-1
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_21_DR2_V2_1
+PSPS_PV3_ST_SLICE_21
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+248
+251
+-7
+-1
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_21_DR2_V2_2
+PSPS_PV3_ST_SLICE_21
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+251
+254
+-7
+-1
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_21_DR2_V2_3
+PSPS_PV3_ST_SLICE_21
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+254
+257
+-7
+-1
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_21_DR2_V2_4
+PSPS_PV3_ST_SLICE_21
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+257
+260
+-7
+-1
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_21_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_21_DR2_V2_5
+PSPS_PV3_ST_SLICE_21
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+260
+264
+-7
+-1
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_22_DR2_V2
+PSPS_PV3_ST_SLICE_22
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+127
+248
+-7
+-1
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_22_DR2_V2_1
+PSPS_PV3_ST_SLICE_22
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+127
+151
+-7
+-1
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_22_DR2_V2_2
+PSPS_PV3_ST_SLICE_22
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+151
+175
+-7
+-1
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_22_DR2_V2_3
+PSPS_PV3_ST_SLICE_22
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+175
+199
+-7
+-1
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_22_DR2_V2_4
+PSPS_PV3_ST_SLICE_22
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+199
+223
+-7
+-1
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_22_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_22_DR2_V2_5
+PSPS_PV3_ST_SLICE_22
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+223
+248
+-7
+-1
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_23_DR2_V2
+PSPS_PV3_ST_SLICE_23
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+127
+-7
+-1
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_23_DR2_V2_1
+PSPS_PV3_ST_SLICE_23
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+25
+-7
+-1
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_23_DR2_V2_2
+PSPS_PV3_ST_SLICE_23
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+25
+50
+-7
+-1
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_23_DR2_V2_3
+PSPS_PV3_ST_SLICE_23
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+50
+75
+-7
+-1
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_23_DR2_V2_4
+PSPS_PV3_ST_SLICE_23
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+75
+100
+-7
+-1
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_23_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_23_DR2_V2_5
+PSPS_PV3_ST_SLICE_23
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+100
+127
+-7
+-1
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_24_DR2_V2
+PSPS_PV3_ST_SLICE_24
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+263
+360
+-1
+4
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_24_DR2_V2_1
+PSPS_PV3_ST_SLICE_24
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+263
+282
+-1
+4
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_24_DR2_V2_2
+PSPS_PV3_ST_SLICE_24
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+282
+301
+-1
+4
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_24_DR2_V2_3
+PSPS_PV3_ST_SLICE_24
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+301
+320
+-1
+4
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_24_DR2_V2_4
+PSPS_PV3_ST_SLICE_24
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+320
+339
+-1
+4
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_24_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_24_DR2_V2_5
+PSPS_PV3_ST_SLICE_24
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+339
+360
+-1
+4
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_25_DR2_V2
+PSPS_PV3_ST_SLICE_25
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+244
+263
+-1
+4
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_25_DR2_V2_1
+PSPS_PV3_ST_SLICE_25
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+244
+247
+-1
+4
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_25_DR2_V2_2
+PSPS_PV3_ST_SLICE_25
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+247
+250
+-1
+4
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_25_DR2_V2_3
+PSPS_PV3_ST_SLICE_25
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+250
+253
+-1
+4
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_25_DR2_V2_4
+PSPS_PV3_ST_SLICE_25
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+253
+256
+-1
+4
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_25_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_25_DR2_V2_5
+PSPS_PV3_ST_SLICE_25
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+256
+263
+-1
+4
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_26_DR2_V2
+PSPS_PV3_ST_SLICE_26
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+121
+244
+-1
+4
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_26_DR2_V2_1
+PSPS_PV3_ST_SLICE_26
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+121
+145
+-1
+4
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_26_DR2_V2_2
+PSPS_PV3_ST_SLICE_26
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+145
+169
+-1
+4
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_26_DR2_V2_3
+PSPS_PV3_ST_SLICE_26
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+169
+193
+-1
+4
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_26_DR2_V2_4
+PSPS_PV3_ST_SLICE_26
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+193
+217
+-1
+4
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_26_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_26_DR2_V2_5
+PSPS_PV3_ST_SLICE_26
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+217
+244
+-1
+4
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_27_DR2_V2
+PSPS_PV3_ST_SLICE_27
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+121
+-1
+4
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_27_DR2_V2_1
+PSPS_PV3_ST_SLICE_27
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+24
+-1
+4
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_27_DR2_V2_2
+PSPS_PV3_ST_SLICE_27
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+24
+48
+-1
+4
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_27_DR2_V2_3
+PSPS_PV3_ST_SLICE_27
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+48
+72
+-1
+4
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_27_DR2_V2_4
+PSPS_PV3_ST_SLICE_27
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+72
+96
+-1
+4
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_27_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_27_DR2_V2_5
+PSPS_PV3_ST_SLICE_27
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+96
+121
+-1
+4
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_28_DR2_V2
+PSPS_PV3_ST_SLICE_28
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+262
+360
+4
+9
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_28_DR2_V2_1
+PSPS_PV3_ST_SLICE_28
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+262
+281
+4
+9
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_28_DR2_V2_2
+PSPS_PV3_ST_SLICE_28
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+281
+300
+4
+9
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_28_DR2_V2_3
+PSPS_PV3_ST_SLICE_28
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+300
+319
+4
+9
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_28_DR2_V2_4
+PSPS_PV3_ST_SLICE_28
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+319
+338
+4
+9
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_28_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_28_DR2_V2_5
+PSPS_PV3_ST_SLICE_28
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+338
+360
+4
+9
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_29_DR2_V2
+PSPS_PV3_ST_SLICE_29
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+242
+262
+4
+9
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_29_DR2_V2_1
+PSPS_PV3_ST_SLICE_29
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+242
+246
+4
+9
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_29_DR2_V2_2
+PSPS_PV3_ST_SLICE_29
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+246
+250
+4
+9
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_29_DR2_V2_3
+PSPS_PV3_ST_SLICE_29
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+250
+254
+4
+9
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_29_DR2_V2_4
+PSPS_PV3_ST_SLICE_29
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+254
+258
+4
+9
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_29_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_29_DR2_V2_5
+PSPS_PV3_ST_SLICE_29
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+258
+262
+4
+9
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_30_DR2_V2
+PSPS_PV3_ST_SLICE_30
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+118
+242
+4
+9
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_30_DR2_V2_1
+PSPS_PV3_ST_SLICE_30
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+118
+142
+4
+9
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_30_DR2_V2_2
+PSPS_PV3_ST_SLICE_30
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+142
+166
+4
+9
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_30_DR2_V2_3
+PSPS_PV3_ST_SLICE_30
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+166
+190
+4
+9
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_30_DR2_V2_4
+PSPS_PV3_ST_SLICE_30
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+190
+214
+4
+9
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_30_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_30_DR2_V2_5
+PSPS_PV3_ST_SLICE_30
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+214
+242
+4
+9
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_31_DR2_V2
+PSPS_PV3_ST_SLICE_31
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+118
+4
+9
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_31_DR2_V2_1
+PSPS_PV3_ST_SLICE_31
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+23
+4
+9
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_31_DR2_V2_2
+PSPS_PV3_ST_SLICE_31
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+23
+46
+4
+9
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_31_DR2_V2_3
+PSPS_PV3_ST_SLICE_31
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+46
+69
+4
+9
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_31_DR2_V2_4
+PSPS_PV3_ST_SLICE_31
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+69
+92
+4
+9
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_31_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_31_DR2_V2_5
+PSPS_PV3_ST_SLICE_31
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+92
+118
+4
+9
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_32_DR2_V2
+PSPS_PV3_ST_SLICE_32
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+258
+360
+9
+15
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_32_DR2_V2_1
+PSPS_PV3_ST_SLICE_32
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+258
+278
+9
+15
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_32_DR2_V2_2
+PSPS_PV3_ST_SLICE_32
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+278
+298
+9
+15
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_32_DR2_V2_3
+PSPS_PV3_ST_SLICE_32
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+298
+318
+9
+15
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_32_DR2_V2_4
+PSPS_PV3_ST_SLICE_32
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+318
+338
+9
+15
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_32_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_32_DR2_V2_5
+PSPS_PV3_ST_SLICE_32
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+338
+360
+9
+15
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_33_DR2_V2
+PSPS_PV3_ST_SLICE_33
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+241
+258
+9
+15
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_33_DR2_V2_1
+PSPS_PV3_ST_SLICE_33
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+241
+244
+9
+15
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_33_DR2_V2_2
+PSPS_PV3_ST_SLICE_33
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+244
+247
+9
+15
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_33_DR2_V2_3
+PSPS_PV3_ST_SLICE_33
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+247
+250
+9
+15
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_33_DR2_V2_4
+PSPS_PV3_ST_SLICE_33
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+250
+253
+9
+15
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_33_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_33_DR2_V2_5
+PSPS_PV3_ST_SLICE_33
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+253
+258
+9
+15
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_34_DR2_V2
+PSPS_PV3_ST_SLICE_34
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+113
+241
+9
+15
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_34_DR2_V2_1
+PSPS_PV3_ST_SLICE_34
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+113
+138
+9
+15
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_34_DR2_V2_2
+PSPS_PV3_ST_SLICE_34
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+138
+163
+9
+15
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_34_DR2_V2_3
+PSPS_PV3_ST_SLICE_34
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+163
+188
+9
+15
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_34_DR2_V2_4
+PSPS_PV3_ST_SLICE_34
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+188
+213
+9
+15
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_34_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_34_DR2_V2_5
+PSPS_PV3_ST_SLICE_34
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+213
+241
+9
+15
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_35_DR2_V2
+PSPS_PV3_ST_SLICE_35
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+113
+9
+15
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_35_DR2_V2_1
+PSPS_PV3_ST_SLICE_35
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+22
+9
+15
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_35_DR2_V2_2
+PSPS_PV3_ST_SLICE_35
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+22
+44
+9
+15
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_35_DR2_V2_3
+PSPS_PV3_ST_SLICE_35
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+44
+66
+9
+15
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_35_DR2_V2_4
+PSPS_PV3_ST_SLICE_35
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+66
+88
+9
+15
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_35_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_35_DR2_V2_5
+PSPS_PV3_ST_SLICE_35
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+88
+113
+9
+15
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_36_DR2_V2
+PSPS_PV3_ST_SLICE_36
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+255
+360
+15
+21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_36_DR2_V2_1
+PSPS_PV3_ST_SLICE_36
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+255
+276
+15
+21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_36_DR2_V2_2
+PSPS_PV3_ST_SLICE_36
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+276
+297
+15
+21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_36_DR2_V2_3
+PSPS_PV3_ST_SLICE_36
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+297
+318
+15
+21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_36_DR2_V2_4
+PSPS_PV3_ST_SLICE_36
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+318
+339
+15
+21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_36_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_36_DR2_V2_5
+PSPS_PV3_ST_SLICE_36
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+339
+360
+15
+21
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_37_DR2_V2
+PSPS_PV3_ST_SLICE_37
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+238
+255
+15
+21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_37_DR2_V2_1
+PSPS_PV3_ST_SLICE_37
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+238
+241
+15
+21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_37_DR2_V2_2
+PSPS_PV3_ST_SLICE_37
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+241
+244
+15
+21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_37_DR2_V2_3
+PSPS_PV3_ST_SLICE_37
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+244
+247
+15
+21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_37_DR2_V2_4
+PSPS_PV3_ST_SLICE_37
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+247
+250
+15
+21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_37_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_37_DR2_V2_5
+PSPS_PV3_ST_SLICE_37
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+250
+255
+15
+21
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_38_DR2_V2
+PSPS_PV3_ST_SLICE_38
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+113
+238
+15
+21
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_38_DR2_V2_1
+PSPS_PV3_ST_SLICE_38
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+113
+138
+15
+21
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_38_DR2_V2_2
+PSPS_PV3_ST_SLICE_38
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+138
+163
+15
+21
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_38_DR2_V2_3
+PSPS_PV3_ST_SLICE_38
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+163
+188
+15
+21
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_38_DR2_V2_4
+PSPS_PV3_ST_SLICE_38
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+188
+213
+15
+21
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_38_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_38_DR2_V2_5
+PSPS_PV3_ST_SLICE_38
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+213
+238
+15
+21
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_39_DR2_V2
+PSPS_PV3_ST_SLICE_39
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+113
+15
+21
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_39_DR2_V2_1
+PSPS_PV3_ST_SLICE_39
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+22
+15
+21
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_39_DR2_V2_2
+PSPS_PV3_ST_SLICE_39
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+22
+44
+15
+21
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_39_DR2_V2_3
+PSPS_PV3_ST_SLICE_39
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+44
+66
+15
+21
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_39_DR2_V2_4
+PSPS_PV3_ST_SLICE_39
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+66
+88
+15
+21
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_39_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_39_DR2_V2_5
+PSPS_PV3_ST_SLICE_39
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+88
+113
+15
+21
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_40_DR2_V2
+PSPS_PV3_ST_SLICE_40
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+252
+360
+21
+28
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_40_DR2_V2_1
+PSPS_PV3_ST_SLICE_40
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+252
+273
+21
+28
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_40_DR2_V2_2
+PSPS_PV3_ST_SLICE_40
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+273
+294
+21
+28
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_40_DR2_V2_3
+PSPS_PV3_ST_SLICE_40
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+294
+315
+21
+28
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_40_DR2_V2_4
+PSPS_PV3_ST_SLICE_40
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+315
+336
+21
+28
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_40_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_40_DR2_V2_5
+PSPS_PV3_ST_SLICE_40
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+336
+360
+21
+28
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_41_DR2_V2
+PSPS_PV3_ST_SLICE_41
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+233
+252
+21
+28
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_41_DR2_V2_1
+PSPS_PV3_ST_SLICE_41
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+233
+236
+21
+28
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_41_DR2_V2_2
+PSPS_PV3_ST_SLICE_41
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+236
+239
+21
+28
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_41_DR2_V2_3
+PSPS_PV3_ST_SLICE_41
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+239
+242
+21
+28
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_41_DR2_V2_4
+PSPS_PV3_ST_SLICE_41
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+242
+245
+21
+28
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_41_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_41_DR2_V2_5
+PSPS_PV3_ST_SLICE_41
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+245
+252
+21
+28
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_42_DR2_V2
+PSPS_PV3_ST_SLICE_42
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+115
+233
+21
+28
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_42_DR2_V2_1
+PSPS_PV3_ST_SLICE_42
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+115
+138
+21
+28
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_42_DR2_V2_2
+PSPS_PV3_ST_SLICE_42
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+138
+161
+21
+28
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_42_DR2_V2_3
+PSPS_PV3_ST_SLICE_42
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+161
+184
+21
+28
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_42_DR2_V2_4
+PSPS_PV3_ST_SLICE_42
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+184
+207
+21
+28
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_42_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_42_DR2_V2_5
+PSPS_PV3_ST_SLICE_42
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+207
+233
+21
+28
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_43_DR2_V2
+PSPS_PV3_ST_SLICE_43
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+115
+21
+28
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_43_DR2_V2_1
+PSPS_PV3_ST_SLICE_43
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+23
+21
+28
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_43_DR2_V2_2
+PSPS_PV3_ST_SLICE_43
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+23
+46
+21
+28
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_43_DR2_V2_3
+PSPS_PV3_ST_SLICE_43
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+46
+69
+21
+28
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_43_DR2_V2_4
+PSPS_PV3_ST_SLICE_43
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+69
+92
+21
+28
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_43_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_43_DR2_V2_5
+PSPS_PV3_ST_SLICE_43
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+92
+115
+21
+28
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_44_DR2_V2
+PSPS_PV3_ST_SLICE_44
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+249
+360
+28
+35
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_44_DR2_V2_1
+PSPS_PV3_ST_SLICE_44
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+249
+271
+28
+35
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_44_DR2_V2_2
+PSPS_PV3_ST_SLICE_44
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+271
+293
+28
+35
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_44_DR2_V2_3
+PSPS_PV3_ST_SLICE_44
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+293
+315
+28
+35
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_44_DR2_V2_4
+PSPS_PV3_ST_SLICE_44
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+315
+337
+28
+35
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_44_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_44_DR2_V2_5
+PSPS_PV3_ST_SLICE_44
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+337
+360
+28
+35
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_45_DR2_V2
+PSPS_PV3_ST_SLICE_45
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+227
+249
+28
+35
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_45_DR2_V2_1
+PSPS_PV3_ST_SLICE_45
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+227
+231
+28
+35
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_45_DR2_V2_2
+PSPS_PV3_ST_SLICE_45
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+231
+235
+28
+35
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_45_DR2_V2_3
+PSPS_PV3_ST_SLICE_45
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+235
+239
+28
+35
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_45_DR2_V2_4
+PSPS_PV3_ST_SLICE_45
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+239
+243
+28
+35
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_45_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_45_DR2_V2_5
+PSPS_PV3_ST_SLICE_45
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+243
+249
+28
+35
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_46_DR2_V2
+PSPS_PV3_ST_SLICE_46
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+114
+227
+28
+35
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_46_DR2_V2_1
+PSPS_PV3_ST_SLICE_46
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+114
+136
+28
+35
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_46_DR2_V2_2
+PSPS_PV3_ST_SLICE_46
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+136
+158
+28
+35
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_46_DR2_V2_3
+PSPS_PV3_ST_SLICE_46
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+158
+180
+28
+35
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_46_DR2_V2_4
+PSPS_PV3_ST_SLICE_46
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+180
+202
+28
+35
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_46_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_46_DR2_V2_5
+PSPS_PV3_ST_SLICE_46
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+202
+227
+28
+35
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_47_DR2_V2
+PSPS_PV3_ST_SLICE_47
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+114
+28
+35
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_47_DR2_V2_1
+PSPS_PV3_ST_SLICE_47
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+22
+28
+35
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_47_DR2_V2_2
+PSPS_PV3_ST_SLICE_47
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+22
+44
+28
+35
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_47_DR2_V2_3
+PSPS_PV3_ST_SLICE_47
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+44
+66
+28
+35
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_47_DR2_V2_4
+PSPS_PV3_ST_SLICE_47
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+66
+88
+28
+35
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_47_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_47_DR2_V2_5
+PSPS_PV3_ST_SLICE_47
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+88
+114
+28
+35
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_48_DR2_V2
+PSPS_PV3_ST_SLICE_48
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+246
+360
+35
+42
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_48_DR2_V2_1
+PSPS_PV3_ST_SLICE_48
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+246
+268
+35
+42
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_48_DR2_V2_2
+PSPS_PV3_ST_SLICE_48
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+268
+290
+35
+42
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_48_DR2_V2_3
+PSPS_PV3_ST_SLICE_48
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+290
+312
+35
+42
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_48_DR2_V2_4
+PSPS_PV3_ST_SLICE_48
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+312
+334
+35
+42
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_48_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_48_DR2_V2_5
+PSPS_PV3_ST_SLICE_48
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+334
+360
+35
+42
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_49_DR2_V2
+PSPS_PV3_ST_SLICE_49
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+215
+246
+35
+42
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_49_DR2_V2_1
+PSPS_PV3_ST_SLICE_49
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+215
+221
+35
+42
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_49_DR2_V2_2
+PSPS_PV3_ST_SLICE_49
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+221
+227
+35
+42
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_49_DR2_V2_3
+PSPS_PV3_ST_SLICE_49
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+227
+233
+35
+42
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_49_DR2_V2_4
+PSPS_PV3_ST_SLICE_49
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+233
+239
+35
+42
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_49_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_49_DR2_V2_5
+PSPS_PV3_ST_SLICE_49
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+239
+246
+35
+42
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_50_DR2_V2
+PSPS_PV3_ST_SLICE_50
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+112
+215
+35
+42
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_50_DR2_V2_1
+PSPS_PV3_ST_SLICE_50
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+112
+132
+35
+42
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_50_DR2_V2_2
+PSPS_PV3_ST_SLICE_50
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+132
+152
+35
+42
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_50_DR2_V2_3
+PSPS_PV3_ST_SLICE_50
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+152
+172
+35
+42
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_50_DR2_V2_4
+PSPS_PV3_ST_SLICE_50
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+172
+192
+35
+42
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_50_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_50_DR2_V2_5
+PSPS_PV3_ST_SLICE_50
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+192
+215
+35
+42
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_51_DR2_V2
+PSPS_PV3_ST_SLICE_51
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+112
+35
+42
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_51_DR2_V2_1
+PSPS_PV3_ST_SLICE_51
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+22
+35
+42
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_51_DR2_V2_2
+PSPS_PV3_ST_SLICE_51
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+22
+44
+35
+42
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_51_DR2_V2_3
+PSPS_PV3_ST_SLICE_51
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+44
+66
+35
+42
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_51_DR2_V2_4
+PSPS_PV3_ST_SLICE_51
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+66
+88
+35
+42
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_51_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_51_DR2_V2_5
+PSPS_PV3_ST_SLICE_51
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+88
+112
+35
+42
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_52_DR2_V2
+PSPS_PV3_ST_SLICE_52
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+239
+360
+42
+50
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_52_DR2_V2_1
+PSPS_PV3_ST_SLICE_52
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+239
+263
+42
+50
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_52_DR2_V2_2
+PSPS_PV3_ST_SLICE_52
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+263
+287
+42
+50
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_52_DR2_V2_3
+PSPS_PV3_ST_SLICE_52
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+287
+311
+42
+50
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_52_DR2_V2_4
+PSPS_PV3_ST_SLICE_52
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+311
+335
+42
+50
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_52_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_52_DR2_V2_5
+PSPS_PV3_ST_SLICE_52
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+335
+360
+42
+50
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_53_DR2_V2
+PSPS_PV3_ST_SLICE_53
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+205
+239
+42
+50
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_53_DR2_V2_1
+PSPS_PV3_ST_SLICE_53
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+205
+211
+42
+50
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_53_DR2_V2_2
+PSPS_PV3_ST_SLICE_53
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+211
+217
+42
+50
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_53_DR2_V2_3
+PSPS_PV3_ST_SLICE_53
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+217
+223
+42
+50
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_53_DR2_V2_4
+PSPS_PV3_ST_SLICE_53
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+223
+229
+42
+50
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_53_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_53_DR2_V2_5
+PSPS_PV3_ST_SLICE_53
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+229
+239
+42
+50
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_54_DR2_V2
+PSPS_PV3_ST_SLICE_54
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+116
+205
+42
+50
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_54_DR2_V2_1
+PSPS_PV3_ST_SLICE_54
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+116
+133
+42
+50
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_54_DR2_V2_2
+PSPS_PV3_ST_SLICE_54
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+133
+150
+42
+50
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_54_DR2_V2_3
+PSPS_PV3_ST_SLICE_54
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+150
+167
+42
+50
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_54_DR2_V2_4
+PSPS_PV3_ST_SLICE_54
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+167
+184
+42
+50
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_54_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_54_DR2_V2_5
+PSPS_PV3_ST_SLICE_54
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+184
+205
+42
+50
+1
+/data/ipp102.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_55_DR2_V2
+PSPS_PV3_ST_SLICE_55
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+116
+42
+50
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_55_DR2_V2_1
+PSPS_PV3_ST_SLICE_55
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+23
+42
+50
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_55_DR2_V2_2
+PSPS_PV3_ST_SLICE_55
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+23
+46
+42
+50
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_55_DR2_V2_3
+PSPS_PV3_ST_SLICE_55
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+46
+69
+42
+50
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_55_DR2_V2_4
+PSPS_PV3_ST_SLICE_55
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+69
+92
+42
+50
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_55_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_55_DR2_V2_5
+PSPS_PV3_ST_SLICE_55
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+92
+116
+42
+50
+1
+/data/ipp102.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_56_DR2_V2
+PSPS_PV3_ST_SLICE_56
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+229
+360
+50
+60
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_56_DR2_V2_1
+PSPS_PV3_ST_SLICE_56
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+229
+255
+50
+60
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_56_DR2_V2_2
+PSPS_PV3_ST_SLICE_56
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+255
+281
+50
+60
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_56_DR2_V2_3
+PSPS_PV3_ST_SLICE_56
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+281
+307
+50
+60
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_56_DR2_V2_4
+PSPS_PV3_ST_SLICE_56
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+307
+333
+50
+60
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_56_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_56_DR2_V2_5
+PSPS_PV3_ST_SLICE_56
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+333
+360
+50
+60
+1
+/data/ipp103.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_57_DR2_V2
+PSPS_PV3_ST_SLICE_57
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+191
+229
+50
+60
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_57_DR2_V2_1
+PSPS_PV3_ST_SLICE_57
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+191
+198
+50
+60
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_57_DR2_V2_2
+PSPS_PV3_ST_SLICE_57
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+198
+205
+50
+60
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_57_DR2_V2_3
+PSPS_PV3_ST_SLICE_57
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+205
+212
+50
+60
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_57_DR2_V2_4
+PSPS_PV3_ST_SLICE_57
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+212
+219
+50
+60
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_57_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_57_DR2_V2_5
+PSPS_PV3_ST_SLICE_57
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+219
+229
+50
+60
+1
+/data/ipp103.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_58_DR2_V2
+PSPS_PV3_ST_SLICE_58
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+123
+191
+50
+60
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_58_DR2_V2_1
+PSPS_PV3_ST_SLICE_58
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+123
+136
+50
+60
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_58_DR2_V2_2
+PSPS_PV3_ST_SLICE_58
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+136
+149
+50
+60
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_58_DR2_V2_3
+PSPS_PV3_ST_SLICE_58
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+149
+162
+50
+60
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_58_DR2_V2_4
+PSPS_PV3_ST_SLICE_58
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+162
+175
+50
+60
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_58_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_58_DR2_V2_5
+PSPS_PV3_ST_SLICE_58
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+175
+191
+50
+60
+1
+/data/ipp104.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_59_DR2_V2
+PSPS_PV3_ST_SLICE_59
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+123
+50
+60
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_59_DR2_V2_1
+PSPS_PV3_ST_SLICE_59
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+24
+50
+60
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_59_DR2_V2_2
+PSPS_PV3_ST_SLICE_59
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+24
+48
+50
+60
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_59_DR2_V2_3
+PSPS_PV3_ST_SLICE_59
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+48
+72
+50
+60
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_59_DR2_V2_4
+PSPS_PV3_ST_SLICE_59
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+72
+96
+50
+60
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_59_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_59_DR2_V2_5
+PSPS_PV3_ST_SLICE_59
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+96
+123
+50
+60
+1
+/data/ipp104.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_60_DR2_V2
+PSPS_PV3_ST_SLICE_60
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+238
+360
+60
+90
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_60_DR2_V2_1
+PSPS_PV3_ST_SLICE_60
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+238
+262
+60
+90
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_60_DR2_V2_2
+PSPS_PV3_ST_SLICE_60
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+262
+286
+60
+90
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_60_DR2_V2_3
+PSPS_PV3_ST_SLICE_60
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+286
+310
+60
+90
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_60_DR2_V2_4
+PSPS_PV3_ST_SLICE_60
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+310
+334
+60
+90
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_60_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_60_DR2_V2_5
+PSPS_PV3_ST_SLICE_60
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+334
+360
+60
+90
+1
+/data/ipp100.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_61_DR2_V2
+PSPS_PV3_ST_SLICE_61
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+178
+238
+60
+90
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_61_DR2_V2_1
+PSPS_PV3_ST_SLICE_61
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+178
+190
+60
+90
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_61_DR2_V2_2
+PSPS_PV3_ST_SLICE_61
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+190
+202
+60
+90
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_61_DR2_V2_3
+PSPS_PV3_ST_SLICE_61
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+202
+214
+60
+90
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_61_DR2_V2_4
+PSPS_PV3_ST_SLICE_61
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+214
+226
+60
+90
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_61_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_61_DR2_V2_5
+PSPS_PV3_ST_SLICE_61
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+226
+238
+60
+90
+1
+/data/ipp100.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_62_DR2_V2
+PSPS_PV3_ST_SLICE_62
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+117
+178
+60
+90
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_62_DR2_V2_1
+PSPS_PV3_ST_SLICE_62
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+117
+129
+60
+90
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_62_DR2_V2_2
+PSPS_PV3_ST_SLICE_62
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+129
+141
+60
+90
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_62_DR2_V2_3
+PSPS_PV3_ST_SLICE_62
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+141
+153
+60
+90
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_62_DR2_V2_4
+PSPS_PV3_ST_SLICE_62
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+153
+165
+60
+90
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_62_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_62_DR2_V2_5
+PSPS_PV3_ST_SLICE_62
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+165
+178
+60
+90
+1
+/data/ipp101.0/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_63_DR2_V2
+PSPS_PV3_ST_SLICE_63
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+117
+60
+90
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_1.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_1.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_1.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_63_DR2_V2_1
+PSPS_PV3_ST_SLICE_63
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+0
+23
+60
+90
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_2.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_2.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_2.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_63_DR2_V2_2
+PSPS_PV3_ST_SLICE_63
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+23
+46
+60
+90
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_3.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_3.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_3.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_63_DR2_V2_3
+PSPS_PV3_ST_SLICE_63
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+46
+69
+60
+90
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_4.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_4.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_4.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_63_DR2_V2_4
+PSPS_PV3_ST_SLICE_63
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+69
+92
+60
+90
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_5.dat
===================================================================
--- /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_5.dat	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/PSPS_PV3_ST_SLICE_63_DR2_V2_5.dat	(revision 40362)
@@ -0,0 +1,34 @@
+PSPS_PV3_ST_SLICE_63_DR2_V2_5
+PSPS_PV3_ST_SLICE_63
+IPP_PSPS
+1
+LAP.PV3.MERGE
+/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919
+92
+117
+60
+90
+1
+/data/ipp101.1/ipptopsps/LAP.PV3.MERGE
+3
+1
+1
+1
+2016-04-26
+3PI
+PV3
+0
+1
+0
+0
+0
+0
+0
+0
+0
+1
+1
+use_original
+not_reproc
+2007-05-01
+2016-09-01
Index: /trunk/tools/heather/PV3STloaders/createPV3ST_V2.pl
===================================================================
--- /trunk/tools/heather/PV3STloaders/createPV3ST_V2.pl	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/createPV3ST_V2.pl	(revision 40362)
@@ -0,0 +1,147 @@
+#!/usr/bin/env perl
+use vars qw ($queueOB, $queueST);
+
+
+while (<>) {
+#example line of the OB.txt file:
+#187   360   28    35    PSPS_PV3_OB_SLICE_22 3800.5985297 ipp101.0
+#settings for the queuer
+my @split = split (/\s+/, $_);
+
+$minra = $split[0];
+$maxra = $split[1];
+$mindec = $split[2];
+$maxdec = $split[3];
+$datastore = $split[4];
+$drive = $split[6];
+
+$pspssurvey = 'PV3';
+$ippsurvey = '3PI';
+$datarelease = '3';
+#$datastore_stub = 'PSPS_PV3_TEST_';
+$dvodb = 'LAP.PV3.MERGE';
+#$dvodb_path = '/data/ipp094.0/eugene/pv3.cam.20150607/catdir.master';
+$dvodb_path = '/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919';
+
+
+$skychunk = $datastore."_DR2_V2"; 
+
+#@stage = ("OB","P2","ST","IN","FO","FW");
+@stage = ("ST");
+   $queueP2 = 0;
+   $queueST = 0;
+   $queueOB = 0;
+   $queueFW = 0;
+   $queueFO = 0;
+
+
+$date1='2007-05-01';
+$date2='2016-09-01';
+
+foreach $mid (@stage) {
+    $loadername = $skychunk;
+   $main::queueP2 = 0;
+   $main::queueST = 0;
+   $main::queueOB = 0;
+   $main::queueFW = 0;
+   $main::queueFO = 0;
+
+    if ($mid =~ /ST/) {
+	$main::queueP2 = 0;
+	$main::queueST = 1;
+	$main::queueOB = 0;
+	$main::queueFW = 0;
+	$main::queueFO = 0;
+    }
+
+
+ #  print "$mid $main::queueP2  $main::queueST $main::queueOB $main::queueFW $main::queueFO\n";
+
+$date = "2016-04-26";
+
+#md 04 is 150 2.2
+
+$box = 1;
+
+$rabox = $maxra - $minra;
+$decbox = $maxdec -$mindec;
+
+
+#first check if $maxra - $minra is a multiple of box
+if ($rabox % $box == 0) {
+#    print "ra boxsize seems ok\n";
+} else {
+    print "ra boxsize not ok\n";
+}
+if ($decbox % $box == 0) {
+#    print "dec boxsize seems ok \n";
+} else {
+    print "dec boxsize not ok\n";
+}
+
+$compra = ($maxra-$minra) % $box;
+if ($compra == 0) {
+#    print "min/max ra is a multiple of $box\n";
+} else {
+    print "min/max ra is not a multiple of $box\n";
+}
+
+$compdec = ($maxdec - $mindec) % $box;
+if ($compdec == 0) {
+ #   print "min/max dec is a multiple of $box\n";
+} else {
+    print "min/max dec is not a multiple of $box\n";
+}
+
+    
+	#$mid = "ALL";
+	$file = "$skychunk.dat";
+	open FILE, ">", $file or die $!;
+	
+
+	print FILE "$skychunk\n";  #skychunk name
+	print FILE "$datastore\n";                     #datstore product
+	print FILE "IPP_PSPS\n";                       #datastore type
+	print FILE "1\n";                              #publish to datastore
+	print FILE "$dvodb\n";                         #dvolabel
+	print FILE "$dvodb_path\n";                    #dvopath
+	print FILE "$minra\n";                            #rmin 
+	$ra1 = $ra + $rabox;                      #rmax 
+	print FILE "$maxra\n";                           
+	print FILE "$mindec\n";                           #decmin 
+	$dec1 = $dec + $decbox;  
+	print FILE "$maxdec\n";                          #decmax
+	print FILE "$box\n";                           #box
+	print FILE "/data/$drive/ipptopsps/$dvodb\n";              #output dir
+	print FILE "3\n";                              #datarelease
+	print FILE "1\n";                              #delete local
+	print FILE "1\n";                              #delete datastore
+	print FILE "1\n";                              #delete dxlayer
+	print FILE "$date\n";                          #epoch wtf
+	print FILE "$ippsurvey\n";                     #survey
+	print FILE "$pspssurvey\n";                    #pspssurvey
+	print FILE "$main::queueP2\n";                              # queueP2
+	print FILE "$main::queueST\n";                              #queuest
+	print FILE "$main::queueOB\n";                              #queueob
+        print FILE "0\n";#queuedf
+        print FILE "0\n";#queuedo
+        print FILE "$main::queueFW\n";#queuefw
+        print FILE "$main::queueFO\n";#queuefo
+        print FILE "0\n";
+    print FILE "0\n";
+	print FILE "1\n";                              #actibe
+	print FILE "1\n";                              #parallel
+        print FILE "use_original\n";                     #use orig for p2
+        print FILE "not_reproc\n";                       #ST 
+	print FILE "$date1\n";
+	print FILE "$date2\n";
+	close FILE;
+
+
+	print "ippjython queue.py edit < $file\n";
+	#print "ra: $ra dec: $dec box: $box\n";
+	$count++;
+    }
+
+
+}
Index: /trunk/tools/heather/PV3STloaders/createPV3ST_sub_V2.pl
===================================================================
--- /trunk/tools/heather/PV3STloaders/createPV3ST_sub_V2.pl	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/createPV3ST_sub_V2.pl	(revision 40362)
@@ -0,0 +1,154 @@
+#!/usr/bin/env perl
+use vars qw ($queueOB, $queueST);
+use POSIX;
+
+while (<>) {
+#example line of the OB.txt file:
+#187   360   28    35    PSPS_PV3_OB_SLICE_22 3800.5985297 ipp101.0
+#settings for the queuer
+my @split = split (/\s+/, $_);
+
+$minra = $split[0];
+$maxra = $split[1];
+$mindec = $split[2];
+$maxdec = $split[3];
+$datastore = $split[4];
+$drive = $split[6];
+
+$pspssurvey = 'PV3';
+$ippsurvey = '3PI';
+$datarelease = '3';
+#$datastore_stub = 'PSPS_PV3_TEST_';
+$dvodb = 'LAP.PV3.MERGE';
+$dvodb_path = '/data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170919';
+$skychunk = $datastore."_DR2_V2"; 
+
+
+#@stage = ("OB","P2","ST","IN","FO","FW");
+@stage = ("ST");
+   $queueP2 = 0;
+   $queueST = 0;
+   $queueOB = 0;
+   $queueFW = 0;
+   $queueFO = 0;
+
+
+$date1='2007-05-01';
+$date2='2016-09-01';
+
+foreach $mid (@stage) {
+    $loadername = $skychunk;
+   $main::queueP2 = 0;
+   $main::queueST = 0;
+   $main::queueOB = 0;
+   $main::queueFW = 0;
+   $main::queueFO = 0;
+
+    if ($mid =~ /ST/) {
+	$main::queueP2 = 0;
+	$main::queueST = 1;
+	$main::queueOB = 0;
+	$main::queueFW = 0;
+	$main::queueFO = 0;
+    }
+    $date = "2016-04-26";
+    $box = 1;
+
+    $rabox = $maxra - $minra;
+    $decbox = $maxdec -$mindec;
+
+
+#first check if $maxra - $minra is a multiple of box
+    if ($rabox % $box == 0) {
+#    print "ra boxsize seems ok\n";
+    } else {
+	print "ra boxsize not ok\n";
+    }
+    if ($decbox % $box == 0) {
+#    print "dec boxsize seems ok \n";
+    } else {
+	print "dec boxsize not ok\n";
+    }
+    
+    $compra = ($maxra-$minra) % $box;
+    if ($compra == 0) {
+#    print "min/max ra is a multiple of $box\n";
+    } else {
+	print "min/max ra is not a multiple of $box\n";
+    }
+    
+    $compdec = ($maxdec - $mindec) % $box;
+    if ($compdec == 0) {
+	#   print "min/max dec is a multiple of $box\n";
+    } else {
+	print "min/max dec is not a multiple of $box\n";
+    }
+    $segments = 5; 
+    
+    $raseg = int(floor($maxra-$minra)/$segments);
+    @is = (1,2,3,4,5);
+    #for ($iii=1; $iii <= 5; $iii++) {
+    foreach $iii (@is) {
+	#print $datastore;
+	#print $iii;
+	$snum  = $iii;
+	#$ra_thing = 
+	#$mid = "ALL";
+	$file = "$skychunk"."_"."$snum.dat";
+	#print $file;
+	open FILE, ">", $file or die $!;
+	print FILE "$skychunk"."_"."$snum"."\n";  #skychunk name
+	print FILE "$datastore\n";                     #datstore product
+	print FILE "IPP_PSPS\n";                       #datastore type
+	print FILE "1\n";                              #publish to datastore
+	print FILE "$dvodb\n";                         #dvolabel
+	print FILE "$dvodb_path\n";                    #dvopath
+#	print FILE "$minra\n";                            #rmin 
+	$ra1 = $ra + $rabox;                      #rmax 
+#	print FILE "$maxra\n";                           
+	$minraseg = $minra + $raseg*($iii-1);
+	$maxraseg = $minra + $raseg*($iii);
+	if ($iii == 5) {
+	    $maxraseg = $maxra;
+	}
+	print FILE "$minraseg\n";
+	print FILE "$maxraseg\n";
+	print FILE "$mindec\n";                           #decmin 
+	$dec1 = $dec + $decbox;  
+	print FILE "$maxdec\n";                          #decmax
+	print FILE "$box\n";                           #box
+	print FILE "/data/$drive/ipptopsps/$dvodb\n";              #output dir
+	print FILE "3\n";                              #datarelease
+	print FILE "1\n";                              #delete local
+	print FILE "1\n";                              #delete datastore
+	print FILE "1\n";                              #delete dxlayer
+	print FILE "$date\n";                          #epoch wtf
+	print FILE "$ippsurvey\n";                     #survey
+	print FILE "$pspssurvey\n";                    #pspssurvey
+	print FILE "$main::queueP2\n";                              # queueP2
+	print FILE "$main::queueST\n";                              #queuest
+	print FILE "$main::queueOB\n";                              #queueob
+        print FILE "0\n";#queuedf
+        print FILE "0\n";#queuedo
+        print FILE "$main::queueFW\n";#queuefw
+        print FILE "$main::queueFO\n";#queuefo
+        print FILE "0\n";#queuefg
+        print FILE "0\n";#queuego
+	print FILE "1\n";                              #actibe
+	print FILE "1\n";                              #parallel
+        print FILE "use_original\n";                     #use orig for p2
+        print FILE "not_reproc\n";                       #ST 
+	print FILE "$date1\n";
+	print FILE "$date2\n";
+	close FILE;
+
+    
+	print "ippjython queue.py edit < $file\n";
+	#print "ra: $ra dec: $dec box: $box\n";
+}	
+	
+	$count++;
+    }
+    
+}
+
Index: /trunk/tools/heather/PV3STloaders/st_2018.txt
===================================================================
--- /trunk/tools/heather/PV3STloaders/st_2018.txt	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/st_2018.txt	(revision 40362)
@@ -0,0 +1,64 @@
+278   360   -35   -26   PSPS_PV3_ST_SLICE_00 8835.97646206 ipp100.0
+262   278   -35   -26   PSPS_PV3_ST_SLICE_01 8927.97565244 ipp100.1
+145   262   -35   -26   PSPS_PV3_ST_SLICE_02 8553.26955673 ipp101.0
+0     145   -35   -26   PSPS_PV3_ST_SLICE_03 7846.48648417 ipp101.1
+275   360   -26   -21   PSPS_PV3_ST_SLICE_04 9396.90123233 ipp102.0
+260   275   -26   -21   PSPS_PV3_ST_SLICE_05 9118.52507019 ipp102.1
+136   260   -26   -21   PSPS_PV3_ST_SLICE_06 8778.9500556 ipp103.0
+0     136   -26   -21   PSPS_PV3_ST_SLICE_07 7780.77339506 ipp103.1
+274   360   -21   -17   PSPS_PV3_ST_SLICE_08 6913.74678499 ipp104.0
+258   274   -21   -17   PSPS_PV3_ST_SLICE_09 6765.60198593 ipp104.1
+145   258   -21   -17   PSPS_PV3_ST_SLICE_10 6689.11989927 ipp100.0
+0     145   -21   -17   PSPS_PV3_ST_SLICE_11 6324.1488061 ipp100.1
+271   360   -17   -12   PSPS_PV3_ST_SLICE_12 8277.02341772 ipp101.0
+254   271   -17   -12   PSPS_PV3_ST_SLICE_13 8203.03540039 ipp101.1
+122   254   -17   -12   PSPS_PV3_ST_SLICE_14 7847.80536985 ipp102.0
+0     122   -17   -12   PSPS_PV3_ST_SLICE_15 7021.72419643 ipp102.1
+267   360   -12   -7    PSPS_PV3_ST_SLICE_16 7577.24476036 ipp103.0
+251   267   -12   -7    PSPS_PV3_ST_SLICE_17 7621.14744949 ipp103.1
+125   251   -12   -7    PSPS_PV3_ST_SLICE_18 7378.17764759 ipp104.0
+0     125   -12   -7    PSPS_PV3_ST_SLICE_19 6844.25266409 ipp104.1
+264   360   -7    -1    PSPS_PV3_ST_SLICE_20 8310.49581577 ipp100.0
+248   264   -7    -1    PSPS_PV3_ST_SLICE_21 8369.84133148 ipp100.1
+127   248   -7    -1    PSPS_PV3_ST_SLICE_22 8309.23424911 ipp101.0
+0     127   -7    -1    PSPS_PV3_ST_SLICE_23 8199.63738823 ipp101.1
+263   360   -1    4     PSPS_PV3_ST_SLICE_24 7080.60159349 ipp102.0
+244   263   -1    4     PSPS_PV3_ST_SLICE_25 7029.47455597 ipp102.1
+121   244   -1    4     PSPS_PV3_ST_SLICE_26 6919.88329649 ipp103.0
+0     121   -1    4     PSPS_PV3_ST_SLICE_27 6550.21345472 ipp103.1
+262   360   4     9     PSPS_PV3_ST_SLICE_28 6809.45166826 ipp104.0
+242   262   4     9     PSPS_PV3_ST_SLICE_29 6831.57934952 ipp104.1
+118   242   4     9     PSPS_PV3_ST_SLICE_30 6740.45839691 ipp100.0
+0     118   4     9     PSPS_PV3_ST_SLICE_31 6490.95951319 ipp100.1
+258   360   9     15    PSPS_PV3_ST_SLICE_32 8241.06381178 ipp101.0
+241   258   9     15    PSPS_PV3_ST_SLICE_33 8161.41072083 ipp101.1
+113   241   9     15    PSPS_PV3_ST_SLICE_34 7950.36249352 ipp102.0
+0     113   9     15    PSPS_PV3_ST_SLICE_35 7272.95010233 ipp102.1
+255   360   15    21    PSPS_PV3_ST_SLICE_36 7714.69147491 ipp103.0
+238   255   15    21    PSPS_PV3_ST_SLICE_37 7680.03879547 ipp103.1
+113   238   15    21    PSPS_PV3_ST_SLICE_38 7512.21499968 ipp104.0
+0     113   15    21    PSPS_PV3_ST_SLICE_39 7001.24433327 ipp104.1
+252   360   21    28    PSPS_PV3_ST_SLICE_40 8209.68100023 ipp100.0
+233   252   21    28    PSPS_PV3_ST_SLICE_41 8203.90602875 ipp100.1
+115   233   21    28    PSPS_PV3_ST_SLICE_42 8177.28542423 ipp101.0
+0     115   21    28    PSPS_PV3_ST_SLICE_43 7933.09714174 ipp101.1
+249   360   28    35    PSPS_PV3_ST_SLICE_44 7822.81571627 ipp102.0
+227   249   28    35    PSPS_PV3_ST_SLICE_45 7963.90800667 ipp102.1
+114   227   28    35    PSPS_PV3_ST_SLICE_46 7803.93709373 ipp103.0
+0     114   28    35    PSPS_PV3_ST_SLICE_47 7521.77138042 ipp103.1
+246   360   35    42    PSPS_PV3_ST_SLICE_48 7360.84944534 ipp104.0
+215   246   35    42    PSPS_PV3_ST_SLICE_49 7218.12598515 ipp104.1
+112   215   35    42    PSPS_PV3_ST_SLICE_50 7190.52166605 ipp100.0
+0     112   35    42    PSPS_PV3_ST_SLICE_51 6971.38379717 ipp100.1
+239   360   42    50    PSPS_PV3_ST_SLICE_52 7575.86175323 ipp101.0
+205   239   42    50    PSPS_PV3_ST_SLICE_53 7453.73881912 ipp101.1
+116   205   42    50    PSPS_PV3_ST_SLICE_54 7493.18069696 ipp102.0
+0     116   42    50    PSPS_PV3_ST_SLICE_55 7275.746593 ipp102.1
+229   360   50    60    PSPS_PV3_ST_SLICE_56 8116.13040335 ipp103.0
+191   229   50    60    PSPS_PV3_ST_SLICE_57 8061.25739574 ipp103.1
+123   191   50    60    PSPS_PV3_ST_SLICE_58 8029.89636612 ipp104.0
+0     123   50    60    PSPS_PV3_ST_SLICE_59 7642.60822654 ipp104.1
+238   360   60    90    PSPS_PV3_ST_SLICE_60 7881.90687066 ipp100.0
+178   238   60    90    PSPS_PV3_ST_SLICE_61 7905.21189684 ipp100.1
+117   178   60    90    PSPS_PV3_ST_SLICE_62 7898.24344649 ipp101.0
+0     117   60    90    PSPS_PV3_ST_SLICE_63 7558.91255895 ipp101.1
Index: /trunk/tools/heather/PV3STloaders/sub.list
===================================================================
--- /trunk/tools/heather/PV3STloaders/sub.list	(revision 40362)
+++ /trunk/tools/heather/PV3STloaders/sub.list	(revision 40362)
@@ -0,0 +1,320 @@
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_00_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_00_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_00_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_00_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_00_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_01_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_01_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_01_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_01_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_01_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_02_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_02_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_02_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_02_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_02_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_03_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_03_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_03_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_03_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_03_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_04_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_04_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_04_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_04_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_04_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_05_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_05_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_05_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_05_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_05_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_06_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_06_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_06_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_06_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_06_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_07_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_07_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_07_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_07_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_07_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_08_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_08_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_08_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_08_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_08_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_09_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_09_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_09_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_09_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_09_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_10_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_10_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_10_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_10_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_10_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_11_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_11_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_11_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_11_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_11_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_12_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_12_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_12_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_12_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_12_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_13_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_13_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_13_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_13_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_13_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_14_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_14_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_14_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_14_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_14_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_15_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_15_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_15_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_15_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_15_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_16_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_16_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_16_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_16_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_16_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_17_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_17_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_17_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_17_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_17_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_18_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_18_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_18_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_18_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_18_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_19_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_19_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_19_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_19_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_19_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_20_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_20_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_20_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_20_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_20_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_21_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_21_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_21_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_21_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_21_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_22_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_22_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_22_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_22_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_22_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_23_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_23_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_23_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_23_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_23_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_24_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_24_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_24_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_24_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_24_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_25_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_25_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_25_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_25_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_25_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_26_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_26_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_26_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_26_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_26_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_27_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_27_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_27_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_27_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_27_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_28_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_28_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_28_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_28_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_28_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_29_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_29_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_29_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_29_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_29_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_30_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_30_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_30_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_30_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_30_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_31_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_31_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_31_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_31_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_31_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_32_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_32_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_32_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_32_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_32_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_33_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_33_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_33_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_33_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_33_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_34_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_34_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_34_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_34_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_34_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_35_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_35_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_35_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_35_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_35_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_36_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_36_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_36_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_36_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_36_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_37_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_37_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_37_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_37_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_37_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_38_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_38_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_38_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_38_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_38_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_39_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_39_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_39_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_39_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_39_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_40_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_40_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_40_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_40_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_40_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_41_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_41_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_41_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_41_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_41_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_42_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_42_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_42_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_42_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_42_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_43_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_43_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_43_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_43_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_43_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_44_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_44_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_44_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_44_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_44_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_45_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_45_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_45_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_45_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_45_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_46_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_46_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_46_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_46_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_46_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_47_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_47_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_47_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_47_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_47_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_48_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_48_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_48_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_48_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_48_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_49_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_49_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_49_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_49_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_49_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_50_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_50_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_50_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_50_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_50_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_51_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_51_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_51_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_51_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_51_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_52_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_52_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_52_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_52_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_52_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_53_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_53_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_53_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_53_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_53_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_54_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_54_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_54_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_54_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_54_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_55_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_55_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_55_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_55_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_55_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_56_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_56_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_56_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_56_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_56_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_57_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_57_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_57_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_57_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_57_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_58_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_58_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_58_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_58_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_58_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_59_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_59_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_59_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_59_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_59_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_60_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_60_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_60_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_60_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_60_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_61_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_61_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_61_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_61_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_61_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_62_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_62_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_62_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_62_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_62_DR2_V2_5.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_63_DR2_V2_1.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_63_DR2_V2_2.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_63_DR2_V2_3.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_63_DR2_V2_4.dat
+ippjython queue.py edit < PSPS_PV3_ST_SLICE_63_DR2_V2_5.dat
