-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Improve PBS submissions scripts data flow (#9)
* Revise drafts of PBS submission scripts for Blue Waters to make it easier to ingest the output of the previous stage and to provide better parameterization * Add outpath and random seed CLI options to MadGraph5 config generator script * Make MadGraph5 config generator script less location dependent by using absolute paths * Update drell-yan.json config to use bbll topology
- Loading branch information
1 parent
9ec7c5c
commit 0706408
Showing
8 changed files
with
116 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
|
||
PROCESS_DIRECTORY="${1:-drell-yan}" | ||
RANDOM_SEED=300 | ||
qsub "${PROCESS_DIRECTORY}/madgraph5.pbs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
{ | ||
"type": "madgraph5", | ||
"process": "p p > l+ l-", | ||
"output": "drell-yan", | ||
"process": "p p > l+ l- b b~", | ||
"output": "drell-yan_llbb", | ||
"options": { | ||
"shower": "Pythia8", | ||
"nevents": 1000000 | ||
"madevent": { | ||
"run_mode": 2 | ||
}, | ||
"run": { | ||
"shower": "Pythia8", | ||
"nevents": 10000, | ||
"iseed": 0 | ||
} | ||
}, | ||
"version": "0.1.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
# MadEvent options | ||
# 0=single core, 1=cluster, 2=multicore | ||
set run_mode 2 | ||
set nb_core 6 | ||
generate p p > l+ l- | ||
output drell-yan_output | ||
launch drell-yan_output | ||
# Set run card options | ||
# Use PYTHIA8 for the shower/hadronization | ||
shower=Pythia8 | ||
# Generate 1.0e+06 events | ||
set nevents 1000000 | ||
# Set random seed | ||
set iseed 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters