Versions Compared

Key

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

...

No Format
bsub -q xlong -G lcd \
-o `pwd`/job.log \
-e `pwd`/job.err \ 
time ./slic \
-g mygeom.lcdd \
-O \
-op outputoutputPath \
-i events \ 
-m init.mac \
-r 5000 \
-x

...

  1. submitting to a queue called 'xlong'
  2. user belongs to a group called 'lcd'
  3. standard output goes to job.log
  4. standard error goes to job.err
  5. slic can be found in the current directory

One should always be using the slic autoname feature for output files (-O).
This currently provides filenames in the following format:

inputStdhepFileName_exeName_exeVersion_Geant4Version_PhysicsListName_DetectorName.slcio

e.g.

panpyttbarsixjets-0-100_SLIC-v2r3p7_geant4-v9r0p1_LCPhys_sid01.slcio

When submitting batch jobs, be sure to break-up your events into manageable chunks, such as 500 events each, or the job may exceed the maximum CPU time.

...