Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:18:01

0001 #!/usr/bin/tcsh 
0002 
0003 set nevts=$1
0004 set indst=$2
0005 set outroot=$3
0006 set startevt=$4
0007 
0008 echo "Nevts = $nevts"
0009 echo "In-DST = $indst"
0010 echo "Out-Root = $outroot"
0011 echo "Start-event = $startevt"
0012 
0013 source /opt/sphenix/core/bin/sphenix_setup.csh -n new
0014 
0015 # Additional commands for my local environment
0016 
0017 set workdir="/sphenix/user/hachiya/INTT/INTT/general_codes/hachiya/SiliconSeeding/SiliconSeedAna/"
0018 set myinstall="${workdir}/install"
0019 source /opt/sphenix/core/bin/setup_local.csh $myinstall 
0020 
0021 
0022 echo 'Fun4All_DST_SiliconSeedAna.C('${nevts}',"'${indst}'","'${outroot}'",'${nevts}')'
0023 root -b -q 'Fun4All_DST_SiliconSeedAna.C('${nevts}',"'${indst}'","'${outroot}'",'${nevts}')'
0024 
0025 echo "all done"
0026 
0027 date