Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The VERSION is replaced by your lcsim build version. The ./myJob.xml argument points to a local file in the lcsim recon XML format.

No Format
java -server -jar ./target/lib/lcsim-1.11-SNAPSHOT.jar ./myJob.xmllcsim

The ./myJob.lcsim argument points to a local file in the lcsim recon XML format.

Simple Example

The JobManager class processes your job, which is written in an xml format.

...

Here is an example Driver class.

No Format
package org.lcsim.example;

public class MyDriver
{
    public void setX(int x);
    public void setX1(int[] x);
    public void setX2(int[][] x);
  
    public void setFile(File f);
    public void setUrl(URL url);
    public void setVector(Hep3Vector vec);
}

...

No Format
java -server -jar ./lib/lcsim-1.4.jar ./myJob.xmllcsim

Each release is also tagged in the cvs, like lcsim-1_4, so checking it out and rebuilding yourself is another possibility. (Not covered here.)