Skip to content

Commit

Permalink
Fix verb and add missing member in dumpDatacard
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Wardle committed Jul 31, 2024
1 parent 428b84f commit 52c6a9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/Datacard.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ def print_structure(self):
print("DC.groups = ", self.groups, "#", type(self.groups))
print("DC.discretes = ", self.discretes, "#", type(self.discretes))
print("DC.pdfnorms = ", self.pdfnorms, "#", type(self.pdfnorms))
print("DC.toCreateFlatParam = ",self.toCreateFlatParam, "#", type(self.toCreateFlatParam))

print(
"""
Expand All @@ -154,7 +155,7 @@ def print_structure(self):
options.out = "combine_workspace.root" # Output workspace name
options.fileName = "./" # Path to input ROOT files
options.verbose = "1" # Verbosity
options.verbose = 1 # Verbosity
##########################################################################
Expand Down

0 comments on commit 52c6a9a

Please sign in to comment.