123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8" ?>
- <!-- <job maxFilesPerProcess="1" filesPerHour="1.0" fileListSyntax="paths" simulateSubmission ="false"> -->
- <job maxFilesPerProcess="10" filesPerHour="10.0" fileListSyntax="paths" simulateSubmission ="false">
- <command>
- cd ${SUBMITTINGDIRECTORY}
- set f = 0
- set l = 1000000
- foreach input (`cat $FILELIST`)
- set filel = `basename ${input} .daq`
- set output = ${filel}.event.root
- if (! -r ${input}) exit 1;
- set logFile = ${filel}B.log
- if ( -r $logFile) exit 0;
- set muFile = ${filel}.MuDst.root
- if (-r $muFile) exit 0;
- set tFile = ${filel}.root
- if (-r $tFile) exit 0;
- root4star -q -b 'bfc.C('${f}','${l}',"B2015,in,Tpx,gmt,gmtMatch,UseXgeom,tpcDB,TpcHitMover,StiCA,KFVertex,CorrX,evout,NoHistos,noTags,noRunco,BAna,analysis,Cosmics","'${input}'","'${output}'","'${tFile}'")' >& ${logFile}
- end
- </command>
- <stdout URL="file:/star/u/pusheax/work/2015/Cosmics/log/Cosmics$JOBID.log" />
- <stderr URL="file:/star/u/pusheax/work/2015/Cosmics/log/Cosmics$JOBID.err" />
- <!-- <input URL="file:/star/subsys/tpc/FF_adc/*.daq" /> -->
- <!-- <input URL="file:/star/data03/daq/2014/*/*/st_cosmic_adc_15*.daq" /> -->
- <input URL="command:/star/u/pusheax/bin/Cosmic.bash" />
- </job>
|