Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-17 09:57:05

0001 #!/bin/bash
0002 
0003 
0004 pushd ${1?Specify directory with \'inputfile\' as first argument}
0005 file=$(basename $(tail -n1 inputfile) .txt)
0006 singularity run docker://ghcr.io/eic/lqgenep
0007 cat << EOF | eic-shell
0008 eic-smear -l -q -e \' BuildTree("${file}.txt", "./") ; TreeToHepMC("${file}.root", "./") \'
0009 abconv --preset ip6_hidiv_275x18 --output ${file}_AB ${file}.hepmc
0010 EOF
0011 popd