run_t2k_superk_production.sh
Go to the documentation of this file.
1 #
2 # Submit all jobs for a standard SuperK MC production.
3 #
4 # Syntax:
5 # ./run_t2k_superk_production.sh [version] [production] [cycle]
6 #
7 # Example:
8 # ./run_t2k_superk_production.sh v2.6.2 2011a 01
9 #
10 # Notes:
11 # - See production/rutherford_tier2/submit-evg_sk_fhst.pl for details about each actual MC job.
12 # - See misc/generate_sk_flux_histograms.C for the derivation of SK flux from the JNUBEAM flux ntuples.
13 # - Using standard SK statistics: 500 numu, 250 numubar, 500 nue, 250 nuebar, 250 nuesig files (2k events each, see submit_t2k_superk_fhst_mc_jobs.pl)
14 # - Remember to switch on the 'decay' flag for all charmed hadrons in UserPhysicsOptions.xml
15 #
16 # C.Andreopoulos <constantinos.andreopoulos \at cern.ch>
17 #
18 
19 #!/bin/bash
20 
21 VRS=$1
22 PRO=$2
23 CYC=$3
24 
25 perl bulk_submit.pl --cmd "perl submit_t2k_superk_fhst_mc_jobs.pl --neutrino numu --version $VRS --production $PRO --cycle $CYC" --arg "--run" --min 1 --max 500
26 perl bulk_submit.pl --cmd "perl submit_t2k_superk_fhst_mc_jobs.pl --neutrino numubar --version $VRS --production $PRO --cycle $CYC" --arg "--run" --min 1 --max 250
27 perl bulk_submit.pl --cmd "perl submit_t2k_superk_fhst_mc_jobs.pl --neutrino nue --version $VRS --production $PRO --cycle $CYC" --arg "--run" --min 1 --max 500
28 perl bulk_submit.pl --cmd "perl submit_t2k_superk_fhst_mc_jobs.pl --neutrino nuebar --version $VRS --production $PRO --cycle $CYC" --arg "--run" --min 1 --max 250
29 perl bulk_submit.pl --cmd "perl submit_t2k_superk_fhst_mc_jobs.pl --neutrino nuesig --version $VRS --production $PRO --cycle $CYC" --arg "--run" --min 1 --max 250
30