def __init__(self, name): ConfigSection.__init__(self, name) self._internal_treetop = False self.section_("tree") self.tree.section_("children") self.tree.childNames = [] self.tree.parent = None
def __init__(self, name="test"): ConfigSection.__init__(self, name) self.objectType = self.__class__.__name__ # //persistent data # // #// self.section_("persistency") self.persistency.specUrl = None # // # // request related information #// self.section_("request") self.request.priority = None # what should be the default value # // # // owner related information #// self.section_("owner") # // # // Policies applied to this workload by the processing system #// self.section_("policies") self.policies.section_("start") self.policies.section_("end") self.policies.start.policyName = None self.policies.end.policyName = None # // # // properties of the Workload and all tasks there-in #// self.section_("properties") self.properties.acquisitionEra = None self.properties.processingVersion = None self.properties.unmergedLFNBase = "/store/unmerged" self.properties.mergedLFNBase = "/store/data" self.properties.dashboardActivity = None # // # // tasks #// self.section_("tasks") self.tasks.tasklist = [] self.sandbox = None self.initialJobCount = 0
def __init__(self, name = None): BaseConfigSection.__init__(self, name)
def __init__(self, name=None): BaseConfigSection.__init__(self, name)