Index: /trunk/dvodist/scripts/mkdist.3pi.pv3.20170216.sh
===================================================================
--- /trunk/dvodist/scripts/mkdist.3pi.pv3.20170216.sh	(revision 40462)
+++ /trunk/dvodist/scripts/mkdist.3pi.pv3.20170216.sh	(revision 40462)
@@ -0,0 +1,42 @@
+#!/bin/csh -f
+
+# create the links needed to expose a specific catalog to the distribution server
+
+# general locations
+set wwwroot = /export/ipp117.0/www/dvodist/www-root
+set catroot = /data/ipp105.0/eugene/3pi.dvo.masters/3pi.pv3.20170216
+
+set catdir = 3pi.pv3.20170216
+set cattgt = $wwwroot/$catdir
+
+set nlist = (n0000 n0730 n1500 n2230 n3000 n3730 n4500 n5230 n6000 n6730 n7500 n8230)
+set slist = (s0000 s0730 s1500 s2230 s3000 s3730 s4500 s5230 s6000 s6730 s7500 s8230)
+
+set extlist = (cpt cpm cps cpn cpx cpy cpz cpq)
+
+# top-level files
+if (1) then
+  mkdir -p $cattgt
+  foreach file (HostTable.dat AstroMap.fits Images.dat Photcodes.dat SkyTable.fits flatcorr.fits flatfield.fits )
+    ln -sf $catroot/$file $cattgt
+  end
+  
+  # make DEC directories
+  foreach dir ($nlist $slist)
+    mkdir -p $cattgt/$dir
+  end
+endif
+
+# link all files from all hostdirs into all DEC dirs
+# foreach hostdir (`grep -v "^#" $cattgt/HostTable.dat | grep "#" | awk '{print $3}'`)
+
+foreach hostdir (`grep -v "^#" $cattgt/HostTable.dat | awk '{print $3}'`)
+  echo $hostdir
+  foreach dir ($nlist $slist)
+    echo $hostdir : $dir
+    foreach ext ($extlist)
+      echo $hostdir : $dir : $ext
+      ln -sf $hostdir/$dir/*.$ext $cattgt/$dir
+    end
+  end
+end
