Skip to content

Commit

Permalink
[srw1] ** COMPLETE SRW1 ** in CODEGEN/generateAndCompare.sh, keep "at…
Browse files Browse the repository at this point in the history
…las" and "cms" process examples added by Stefan but move them to the end of the list

Note: the net effect of this MR is to add atlas and cms to the generateAndCompare.sh script, without fixing their builds
- the cms process is affected by the "unary minus" issue (madgraph5#628)
- the atlas process must be built with HRDCOD=1 because it has a modified SM with zero b mass (similar to madgraph5#616)
  • Loading branch information
valassi committed Jun 12, 2023
1 parent 84f2b5c commit f098eab
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions epochX/cudacpp/CODEGEN/generateAndCompare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,6 @@ function codeGenAndDiff()
# Process-dependent hardcoded configuration
echo -e "\n================================================================"
case "${proc}" in
atlas)
cmd="import model sm-no_b_mass
define p = g u c d s b u~ c~ d~ s~ b~
define j = g u c d s b u~ c~ d~ s~ b~
generate p p > t t~
add process p p > t t~ j
add process p p > t t~ j j"
;;
cms)
cmd="define vl = ve vm vt
define vl~ = ve~ vm~ vt~
define ell+ = e+ mu+ ta+
define ell- = e- mu- ta-
generate p p > ell+ ell- @0"
;;
ee_mumu)
cmd="generate e+ e- > mu+ mu-"
;;
Expand Down Expand Up @@ -77,6 +62,21 @@ generate p p > ell+ ell- @0"
susy_gg_tt)
cmd="import model MSSM_SLHA2; generate g g > t t~"
;;
atlas)
cmd="import model sm-no_b_mass
define p = g u c d s b u~ c~ d~ s~ b~
define j = g u c d s b u~ c~ d~ s~ b~
generate p p > t t~
add process p p > t t~ j
add process p p > t t~ j j"
;;
cms)
cmd="define vl = ve vm vt
define vl~ = ve~ vm~ vt~
define ell+ = e+ mu+ ta+
define ell- = e- mu- ta-
generate p p > ell+ ell- @0"
;;
*)
echo -e "\nWARNING! Skipping unknown process '$proc'"
return
Expand Down

0 comments on commit f098eab

Please # to comment.