Commit in lcsim/src/org/lcsim/job on MAIN
JobControlManager.java+6-51.11 -> 1.12


lcsim/src/org/lcsim/job
JobControlManager.java 1.11 -> 1.12
diff -u -r1.11 -r1.12
--- JobControlManager.java	9 Oct 2008 23:01:29 -0000	1.11
+++ JobControlManager.java	27 Oct 2008 17:58:21 -0000	1.12
@@ -67,6 +67,7 @@
 	boolean verbose;
 	boolean wasSetup;
 	PrintStream logStream = System.out;
+        LCSimLoop loop;
 
 	public JobControlManager()
 	{
@@ -98,7 +99,6 @@
 			throw new RuntimeException("Bailing on job!  The setup() method was never called!");
 		if (printSystemProperties)
 			printSystemProperties(logStream);
-		LCSimLoop loop = new LCSimLoop();
 		for (Driver driver : driverExec)
 		{
 			loop.add(driver);
@@ -519,10 +519,10 @@
 		{
 			String fileLoc = file.getText();
 			File nextFile = new File(fileLoc);
-			if (!nextFile.exists())
-			{
-				throw new RuntimeException("File not found on local filesystem: " + fileLoc);
-			}
+			//if (!nextFile.exists())
+			//{
+			//	throw new RuntimeException("File not found on local filesystem: " + fileLoc);
+			//}
 			inputFiles.add(nextFile);
 			if (verbose)
 			{
@@ -583,6 +583,7 @@
 		verbose = false;
 		wasSetup = false;
 		logStream = System.out;
+		loop = new LCSimLoop();
 	}
 
 	/**
CVSspam 0.2.8