Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /job_submission_slurm/scripts/TCS.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/bin/bash
0002 
0003 export JUGGLER_TAG=${1:-nightly}
0004 
0005 echo "JUGGLER_TAG=${JUGGLER_TAG}"
0006 echo "CAMPAIGNS=${CAMPAIGNS}"
0007 echo "BENCHMARKS=${BENCHMARKS}"
0008 echo "SBATCH_ACCOUNT=${SBATCH_ACCOUNT?Set SBATCH_ACCOUNT to the project account}"
0009 
0010 SBATCH="sbatch --mail-user=${EMAIL:-${USER}@jlab.org} --parsable --requeue --time=36:00:00"
0011 
0012 export USEHEPMC3=true
0013 
0014 for i in `seq 1 10` ; do
0015 
0016   # TCS 18x275 hel_plus
0017   ${SBATCH} --array=1-50 scripts/submit.sh hepmc3 EVGEN/TCS/18x275/hel_plus/tcs_18x275_${i}.hepmc  20000
0018   # TCS 18x275 hel_minus
0019   ${SBATCH} --array=1-50 scripts/submit.sh hepmc3 EVGEN/TCS/18x275/hel_minus/tcs_18x275_lep_hel_flip_${i}.hepmc  20000
0020   # TCS_BH_TCS+BH 18x275 hel_plus
0021   ${SBATCH} --array=1-50 scripts/submit.sh hepmc3 EVGEN/TCS/TCS_BH_TCS+BH/18x275/hel_plus/tcs_bh_int_18x275_${i}.hepmc  20000
0022   # TCS_BH_TCS+BH 18x275 hel_minus
0023   ${SBATCH} --array=1-50 scripts/submit.sh hepmc3 EVGEN/TCS/TCS_BH_TCS+BH/18x275/hel_minus/tcs_bh_int_18x275_lep_hel_flip_${i}.hepmc  20000
0024 
0025   # TCS 10x100 hel_plus
0026   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/10x100/hel_plus/tcs_10x100_${i}.hepmc  25000
0027   # TCS 10x100 hel_minus
0028   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/10x100/hel_minus/tcs_10x100_lep_hel_flip_${i}.hepmc  25000
0029   # TCS_BH_TCS+BH 10x100 hel_plus
0030   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/TCS_BH_TCS+BH/10x100/hel_plus/tcs_bh_int_10x100_${i}.hepmc  25000
0031   # TCS_BH_TCS+BH 10x100 hel_minus
0032   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/TCS_BH_TCS+BH/10x100/hel_minus/tcs_bh_int_10x100_lep_hel_flip_${i}.hepmc  25000
0033 
0034   # TCS 5x41 hel_plus
0035   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/5x41/hel_plus/tcs_5x41_${i}.hepmc      25000
0036   # TCS 5x41 hel_minus
0037   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/5x41/hel_minus/tcs_5x41_lep_hel_flip_${i}.hepmc      25000
0038   # TCS_BH_TCS+BH 5x41 hel_plus
0039   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/TCS_BH_TCS+BH/5x41/hel_plus/tcs_bh_int_5x41_${i}.hepmc      25000
0040   # TCS_BH_TCS+BH 5x41 hel_minus
0041   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/TCS_BH_TCS+BH/5x41/hel_minus/tcs_bh_int_5x41_lep_hel_flip_${i}.hepmc      25000
0042 
0043   # TCS 5x100 hel_plus
0044   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/5x100/hel_plus/tcs_5x100_${i}.hepmc    25000
0045   # TCS 5x100 hel_minus
0046   ${SBATCH} --array=1-40 scripts/submit.sh hepmc3 EVGEN/TCS/5x100/hel_minus/tcs_5x100_lep_hel_flip_${i}.hepmc    25000
0047 
0048 done
0049