Print

Print


Author: [log in to unmask]
Date: Wed Apr 29 15:10:04 2015
New Revision: 2861

Log:
Require all arguments to be supplied to EvioFileProducer script.  Do not provide defaults here.  Reasonable defaults are provided by the class now, instead.

Modified:
    java/trunk/monitoring-app/src/main/scripts/evio_file_producer.sh

Modified: java/trunk/monitoring-app/src/main/scripts/evio_file_producer.sh
 =============================================================================
--- java/trunk/monitoring-app/src/main/scripts/evio_file_producer.sh	(original)
+++ java/trunk/monitoring-app/src/main/scripts/evio_file_producer.sh	Wed Apr 29 15:10:04 2015
@@ -10,7 +10,6 @@
 classpath=${project.build.directory}/${project.artifactId}-${project.version}-bin.jar
 
 # Run the file producer, sending any additional arguments to the command.
-#prod="java -classpath $classpath org.hps.evio.EvioFileProducer -e ${eviofile} -f ETBuffer -host localhost -s 10000 -d 100 $@"
-prod="java -classpath $classpath org.hps.record.evio.EvioFileProducer -e ${eviofile} -f ETBuffer -host localhost -s 200000 $@"
+prod="java -classpath $classpath org.hps.record.evio.EvioFileProducer $@"
 echo $prod
 exec $prod