Versions Compared

Key

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

...

Code Block
languagebash
titlerun.pbs
linenumberstrue
#!/bin/bash

#PBS -q cpu
#PBS -l ncpus=4

cd ${PBS_O_WORKDIR}

module load scientific/geant4/11.1.2-cray
module load utils/cmake/3.26.0gnu

mkdir -p B1/build
cmake -S B1/ -B B1/build/
make -j ${NCPUS} -C B1/build/

cd B1/build/
./exampleB1 run1.mac

...