Skip to content

Commit

Permalink
change verbosity unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangWaltenberger committed Apr 11, 2024
1 parent ea3cf34 commit 22349c5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions unittests/testXSecComputer.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def testXSecMain(self):
xargs.filename = tmpfile
xargs.colors = False
xargs.ssmultipliers = None
xargs.verbosity = "warning"
xargs.verbosity = "error"
#Compute LO cross sections
xsecComputer.main(xargs)
#Compute NLL cross sections
Expand Down Expand Up @@ -158,7 +158,7 @@ def testSSMultipliers(self):
xargs.colors = False
xargs.ssmultipliers = { (1000021,1000021): 4. }
# xargs.ssmultipliers = { 1000021: 2. }
xargs.verbosity = "warning"
xargs.verbosity = "error"
#Compute LO cross sections
xsecComputer.main(xargs)
#Compute NLL cross sections
Expand All @@ -182,7 +182,6 @@ def testSSMultipliers(self):

def testSSJokers(self):
""" test the signal strength multipliers, with jokers """
setLogLevel ( "fatal" )

slhafile="./testFiles/slha/simplyGluino.slha"
f = open(slhafile,'r')
Expand Down Expand Up @@ -216,7 +215,7 @@ def testSSJokers(self):
xargs.colors = False
xargs.ssmultipliers = { ('*100002?','*1000021'): 4. }
# xargs.ssmultipliers = { 1000021: 2. }
xargs.verbosity = "warning"
xargs.verbosity = "error"
#Compute LO cross sections
xsecComputer.main(xargs)
#Compute NLL cross sections
Expand Down

0 comments on commit 22349c5

Please sign in to comment.