-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmitted_cutflow.sh
More file actions
executable file
·29 lines (29 loc) · 940 Bytes
/
submitted_cutflow.sh
File metadata and controls
executable file
·29 lines (29 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
## ##################################################
## Script to run event generation for given M,THETA
## ##################################################
## SBATCH -p batch
## SBATCH --mem=2GB
## SBATCH -n 1
## SBATCH --time=1:00:00
###################################################
# Initialize environment
cd
source activate monoJ
module load GCC/6.2.0-2.27
module load GCCcore/6.2.0
cd /fast/users/a1607156/MG5_ROOT
###################################################
# Just run the cutflow!
module load GCC/8.2.0-2.31.1
currentDir=$PWD
export DISPLAY=localhost:0.0
cd /fast/users/a1607156/MG5_ROOT/Delphes
echo "Beginning: "
root -l<<EOF
gSystem->Load("libDelphes");
.X ${currentDir}/ATLAS_13TEV_MONOJET.C("${currentDir}/MONO_JET_TEST/Events/run_01/tag_1_delphes_events.root", "${currentDir}/MONO_JET_TEST/Events/run_01/NUMBER_OF_M_JETS.csv")
.q
EOF
echo "Done."
cd $currentDir