Public Member Functions | |
| def | __init__ |
Describe a NuWa Production Job
Definition at line 7 of file JobConfig.py.
| def JobConfig::JobConfig::__init__ | ( | self, | ||
name = "Undefined Job", |
||||
command = "nuwa.py", |
||||
hasStats = False, |
||||
addStats = False, |
||||
makeFigures = False, |
||||
addIndex = False, |
||||
addRun = False | ||||
| ) |
Constructor
Definition at line 9 of file JobConfig.py.
00016 : 00017 """Constructor""" 00018 self.name = name 00019 self.command = command 00020 self.hasStats = hasStats 00021 self.addStats = addStats 00022 self.makeFigures = makeFigures 00023 self.addIndex = addIndex 00024 self.addRun = addRun 00025 return 00026 jobConfigs = {}
1.4.7