Index: trunk/DataCheck/Transfer/RsyncRawToISDC.sh
===================================================================
--- trunk/DataCheck/Transfer/RsyncRawToISDC.sh	(revision 18432)
+++ trunk/DataCheck/Transfer/RsyncRawToISDC.sh	(revision 18433)
@@ -13,7 +13,14 @@
 date >> $logfile 2>&1
 
-## check if script is already running
-#lockfile=$lockpath/lock-$program.txt
-#checklock 
+
+# check if only a certain date should be processed
+#  (feature for manual speedup) 
+if [ "$certaindate" != "" ]
+then
+   printprocesslog "INFO process only data of "$certaindate
+   echo "INFO process only data of "$certaindate
+   specialnight=`echo $certaindate | sed -e 's/\///g'`
+fi
+
 
 # stop transfer when less than 100 GB are left
@@ -44,4 +51,18 @@
    lppath="/loc_data/zipraw/"$nightpath
    nightrun=$night"_"`printf %03d $runid`
+
+   # continue if only special night should be processed for manual speedup
+   if [ "$specialnight" != "" ]
+   then
+      if [ $night -ne $specialnight ]
+      then
+         printprocesslog "INFO Treat only "$specialnight" -> continue for "$night
+         echo "INFO Treat only "$specialnight" -> continue for "$night
+         continue
+      else
+         echo "INFO Transfer "$nightrun
+      fi
+   fi
+
    lpfile=`ssh fact@161.72.93.131 "find $lppath -type f -regex '.*$nightrun[.]fits[.][fg]z'"`
    if [ "$lpfile" == "" ]
