Commit in lcio on MAIN
bin/lcio+53added 1.1
tools/lcio-531.3 removed
+53-53
1 added + 1 removed, total 2 files
JM: Move LCIO command-line tool to bin dir.

lcio/bin
lcio added at 1.1
diff -N lcio
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ lcio	1 Aug 2006 17:51:01 -0000	1.1
@@ -0,0 +1,53 @@
+#!/bin/sh
+
+# If LCIO is not set, then figure it out
+# based on the path to this script.
+if [ -z "$LCIO" ]
+then
+
+  # Name of script.
+  PRG="$0"
+
+  # Directory of script.
+  progname=`basename "$0"`
+
+  # Resolve relative symlinks.
+  while [ -h "$PRG" ] ; do
+    ls=`ls -ld "$PRG"`
+    link=`expr "$ls" : '.*-> \(.*\)$'`
+    if expr "$link" : '/.*' > /dev/null; then
+      PRG="$link"
+    else
+      PRG=`dirname "$PRG"`"/$link"
+    fi
+  done
+
+  # LCIO up one.
+  LCIO=`dirname "$PRG"`/..
+
+  # Make the path fully qualified.
+  LCIO=`cd "$LCIO" && pwd`
+fi
+
+#echo "LCIO=$LCIO"
+
+LOCALCLASSPATH=$LCIO/lib/lcio.jar:$LCIO/tools/sio.jar:$LCIO/tools/jdom.jar:$LCIO/tools/saxpath.jar
+LOCALCLASSPATH=$LOCALCLASSPATH:$LCIO/tools/jaxen-jdom.jar:$LCIO/tools/jaxen-core.jar:$LCIO/tools/jel.jar
+LOCALCLASSPATH=$LOCALCLASSPATH:$LCIO/tools/commons-cli-1.0.jar:$LCIO/tools/commons-lang-2.1.jar
+LOCALCLASSPATH=$LOCALCLASSPATH:$LCIO/tools/freehep-hep.jar:$LCIO/tools/freehep-physics.jar:$LCIO/tools/freehep-base.jar
+
+# OS specific support for Cygwin 
+cygwin=false;
+case "`uname`" in
+  CYGWIN*) cygwin=true ;;
+esac
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+#  echo "cygwin"
+#  echo "classpath before -> "$LOCALCLASSPATH
+  LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`
+#  echo "classpath after -> "$LOCALCLASSPATH
+  java -cp "$LOCALCLASSPATH" hep.lcio.util.CommandLineTool $*
+else
+  java -cp $LOCALCLASSPATH hep.lcio.util.CommandLineTool $*
+fi
\ No newline at end of file

lcio/tools
lcio removed after 1.3
diff -N lcio
--- lcio	28 Jun 2006 23:25:18 -0000	1.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-# If LCIO is not set, then figure it out
-# based on the path to this script.
-if [ -z "$LCIO" ]
-then
-
-  # Name of script.
-  PRG="$0"
-
-  # Directory of script.
-  progname=`basename "$0"`
-
-  # Resolve relative symlinks.
-  while [ -h "$PRG" ] ; do
-    ls=`ls -ld "$PRG"`
-    link=`expr "$ls" : '.*-> \(.*\)$'`
-    if expr "$link" : '/.*' > /dev/null; then
-      PRG="$link"
-    else
-      PRG=`dirname "$PRG"`"/$link"
-    fi
-  done
-
-  # LCIO up one.
-  LCIO=`dirname "$PRG"`/..
-
-  # Make the path fully qualified.
-  LCIO=`cd "$LCIO" && pwd`
-fi
-
-#echo "LCIO=$LCIO"
-
-LOCALCLASSPATH=$LCIO/lib/lcio.jar:$LCIO/tools/sio.jar:$LCIO/tools/jdom.jar:$LCIO/tools/saxpath.jar
-LOCALCLASSPATH=$LOCALCLASSPATH:$LCIO/tools/jaxen-jdom.jar:$LCIO/tools/jaxen-core.jar:$LCIO/tools/jel.jar
-LOCALCLASSPATH=$LOCALCLASSPATH:$LCIO/tools/commons-cli-1.0.jar:$LCIO/tools/commons-lang-2.1.jar
-LOCALCLASSPATH=$LOCALCLASSPATH:$LCIO/tools/freehep-hep.jar:$LCIO/tools/freehep-physics.jar:$LCIO/tools/freehep-base.jar
-
-# OS specific support for Cygwin 
-cygwin=false;
-case "`uname`" in
-  CYGWIN*) cygwin=true ;;
-esac
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin; then
-#  echo "cygwin"
-#  echo "classpath before -> "$LOCALCLASSPATH
-  LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`
-#  echo "classpath after -> "$LOCALCLASSPATH
-  java -cp "$LOCALCLASSPATH" hep.lcio.util.CommandLineTool $*
-else
-  java -cp $LOCALCLASSPATH hep.lcio.util.CommandLineTool $*
-fi
\ No newline at end of file
CVSspam 0.2.8