Skip to content

Commit

Permalink
Update PythiaProcDB.py
Browse files Browse the repository at this point in the history
add WW and ZZ (including photons) to the setup
  • Loading branch information
dirkzerwas authored Sep 27, 2024
1 parent f1aab17 commit 4071bbe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/Generators/PythiaProcDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ def write_DBInfo(self):
self.write_Difermion(16)
elif label == "22_22":
self.write_Diphoton()
elif label == "23_23":
self.write_ZZ()
elif label == "24_24":
self.write_WW()
elif label == "23_25":
self.write_run_ZH()

Expand All @@ -72,6 +76,14 @@ def write_Difermion(self, pdg):
def write_Diphoton(self):
self.procout = "PromptPhoton:ffbar2gammagamma = on\n"

def write_ZZ(self):
self.procout = "WeakDoubleBoson:ffbar2gmZgmZ = on\n"
self.procout += "23:onMode = on\n"

def write_WW(self):
self.procout = "WeakDoubleBoson:ffbar2WW = on\n"
self.procout += "24:onMode = on\n"

def write_run_ZH(self):
self.procout = "HiggsSM:ffbar2HZ = on\n"
self.procout += "25:onMode = on\n"
Expand Down

0 comments on commit 4071bbe

Please sign in to comment.