
This is an LCG job submission toolkit. It contains various job submission 
tools. E.g. the job submission is managed by the shell script 'bin/go.sh'.

Prepare the standalone package (which runs as a normal job on a single 
computer with afs), then make a .tar.gz from it, put it into the 'src' 
directory. Then, in the 'inp/arg.list' you can specify run arguments, like:
program0 "arguments0"
program1 "arguments1"
...
Here the program name 'program0', 'program1' etc. refers to the name of the 
tarballs 'src/program0.tar.gz', 'src/program1.tar.gz' etc. These are submitted 
to the LCG, untar-ed, compiled, and the binaries in it are started with the 
appropriate arguments, e.g. with "arguments0", "arguments1" etc. When the 
job is finished, the output is .tar.gz-ed. The job outputs are recuperated and 
untar-ed by the shell script 'bin/getoutput.sh'. The outputs will appear 
in the 'out' directory, with the naming convention:
out/program0.NUMBER0
out/program1.NUMBER1
Here the numbers coincide their sequential numbers in the 'inp/arg.list' 
file. E.g. an output, got from a job started by the third line of the 
'inp/arg.list' file, gets a number tag '3'. Lines beginning with '#' 
are skipped.
