-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakeNames.py
More file actions
27 lines (20 loc) · 740 Bytes
/
makeNames.py
File metadata and controls
27 lines (20 loc) · 740 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
#! /usr/bin/env python
import sys
def makeNames():
fileToMake = open("outputFile.txt","w")
startString = "add process p p > suu > H t H t,"
higgsDecays = ["(H > b b~)","(H > Z Z, Z > j j , Z > j j)","(H > W+ W-, W+ > j j, W- > j j)"]
for decay1 in higgsDecays:
for decay2 in higgsDecays:
fileToMake.write(startString+decay1+","+decay2+"\n")
fileToMake.close()
##############################################################################
#MAIN
##############################################################################
def main(argv):
makeNames()
if __name__ == "__main__":
main(sys.argv[1:])
#1.50833649 -> WT
#need to update WT
#need to change branching fraction of VLQ decays