Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 07:50:28

0001 #!/bin/bash -l 
0002 usage(){ cat << EOU
0003 U4SimtraceTest_two_pmt_cf.sh
0004 ==============================
0005 
0006 Melange : presenting two photons A,B from two geometries S,T 
0007 
0008 Uses SVOL, TVOL to select volumes to present:
0009 
0010 * SVOL : N=0 PMT on left 
0011 * TVOL : N=1 PMT on right 
0012 
0013 
0014 
0015 EOU
0016 }
0017 
0018 arg=${1:-ana}
0019 
0020 N=1
0021 
0022 apid=-973
0023 bpid=-903
0024 
0025 opt=ast,nrm
0026 #opt=idx,nrm
0027 
0028 
0029 export SVOL=0,1,13:24
0030 export TVOL=2:11
0031 
0032 # ndy/pdy : to offset the labels
0033 
0034 export TOPLINE="N=$N APID=$apid AOPT=$opt BPID=$bpid BOPT=$opt BGC=yellow FOCUS=0,0,255 ./U4SimtraceTest.sh"
0035 TOPLINE="$TOPLINE $arg"
0036 eval $TOPLINE
0037 
0038