ATLAS Offline Software
Public Member Functions | Public Attributes | List of all members
python.hanwriter.Document Class Reference
Inheritance diagram for python.hanwriter.Document:
Collaboration diagram for python.hanwriter.Document:

Public Member Functions

def __init__ (self, top_level_algorithm='WorstCaseSummary')
 
def addOutput (self, name, algorithm, annotations={}, attributes={})
 
def getAlgorithm (self, name)
 
def getReference (self, name)
 
def addSubDir (self, name)
 
def addHistogram (self, histogram, algorithm, annotations={}, output=DQHanConfMaker._default_output, attributes={})
 
def getSubDir (self, name)
 
def tohan (self, encoding=None)
 
def toprettyhan (self, indent="\t", newl="\n", encoding=None)
 
def writehan (self, writer, indent="", addindent="", newl="")
 
def appendChild (self, child)
 
def setAttribute (self, key, attribute)
 
def removeAttribute (self, key)
 
def getAttribute (self, key)
 
def getSubNode (self, name, nodetype)
 
def __str__ (self)
 
def getAlgorithm (self)
 
def getOutputPath (self, append=None, delimiter="/")
 
def tohan (self, encoding=None)
 
def toprettyhan (self, indent="\t", newl="\n", encoding=None)
 
def writehan (self, writer, indent="", addindent="", newl="")
 
def appendChild (self, child)
 
def setAttribute (self, key, attribute)
 
def removeAttribute (self, key)
 
def getAttribute (self, key)
 
def getSubNode (self, name, nodetype)
 
def __str__ (self)
 

Public Attributes

 nodeType
 
 acceptChild
 
 root_output_level
 
 subnodes
 
 attributes
 
 name
 
 father
 
 subnodes
 
 attributes
 
 name
 

Detailed Description

Class representing a han document

Definition at line 511 of file hanwriter.py.

Constructor & Destructor Documentation

◆ __init__()

def python.hanwriter.Document.__init__ (   self,
  top_level_algorithm = 'WorstCaseSummary' 
)
Creates an empty han document with a top level output

Reimplemented from python.hanwriter.HanDir.

Definition at line 518 of file hanwriter.py.

518  def __init__(self, top_level_algorithm='WorstCaseSummary'):
519  """
520  Creates an empty han document with a top level output
521  """
522  HanDir.__init__(self, '')
523  HanOutput.__init__(self, '')
524  self.nodeType = Node.DOCUMENT
525  self.acceptChild = [Node.ALGORITHM, Node.DIR, Node.HIST, Node.OUTPUT, Node.REFERENCE, Node.THRESHOLD,
526  Node.COMPALG]
527  self.root_output_level = HanOutput('top_level', top_level_algorithm)
528  self.appendChild(self.root_output_level)

Member Function Documentation

◆ __str__() [1/2]

def python.hanwriter.Node.__str__ (   self)
inherited

Definition at line 192 of file hanwriter.py.

192  def __str__(self):
193  return "HanNode: "+self.name+" ("+DQHanConfMaker._get_NodeType(self.nodeType)+") Attributes:"+str(self.attributes)+" SubNodes: "+str(self.subnodes)
194 
195 
196 # HanHistogram class
197 # This class represents the configuration for a histogram

◆ __str__() [2/2]

def python.hanwriter.Node.__str__ (   self)
inherited

Definition at line 192 of file hanwriter.py.

192  def __str__(self):
193  return "HanNode: "+self.name+" ("+DQHanConfMaker._get_NodeType(self.nodeType)+") Attributes:"+str(self.attributes)+" SubNodes: "+str(self.subnodes)
194 
195 
196 # HanHistogram class
197 # This class represents the configuration for a histogram

◆ addHistogram()

def python.hanwriter.HanDir.addHistogram (   self,
  histogram,
  algorithm,
  annotations = {},
  output = DQHanConfMaker._default_output,
  attributes = {} 
)
inherited
Adds to the directory a histogram specifying the histogram name, the algorithm and the output path.

Definition at line 418 of file hanwriter.py.

418  def addHistogram(self, histogram, algorithm, annotations={}, output=DQHanConfMaker._default_output, attributes={}):
419  """
420  Adds to the directory a histogram specifying the histogram name, the algorithm and the output path.
421  """
422  histo = HanHistogram(histogram, algorithm,
423  annotations, output, attributes)
424  self.appendChild(histo)
425  return histo

◆ addOutput()

def python.hanwriter.Document.addOutput (   self,
  name,
  algorithm,
  annotations = {},
  attributes = {} 
)
Adds a sub output element with name and algorithm

Reimplemented from python.hanwriter.HanOutput.

Definition at line 536 of file hanwriter.py.

536  def addOutput(self, name, algorithm, annotations={}, attributes={}):
537  """
538  Adds a sub output element with name and algorithm
539  """
540  # forward to root region
541  return HanOutput.addOutput(self.root_output_level, name, algorithm, annotations, attributes)

◆ addSubDir()

def python.hanwriter.HanDir.addSubDir (   self,
  name 
)
inherited
Adds a subdirectory called name to the current directory and returns the newly created sub directory

Definition at line 403 of file hanwriter.py.

403  def addSubDir(self, name):
404  """
405  Adds a subdirectory called name to the current directory and returns the newly created sub directory
406  """
407  subdir = HanDir(name)
408  self.appendChild(subdir)
409  return subdir

◆ appendChild() [1/2]

def python.hanwriter.Node.appendChild (   self,
  child 
)
inherited
Add a sub node to this node

Definition at line 128 of file hanwriter.py.

128  def appendChild(self, child):
129  """
130  Add a sub node to this node
131  """
132  try:
133  if child.nodeType not in self.acceptChild:
134  msg = " Node: "+DQHanConfMaker._get_NodeType(self.nodeType)
135  msg += " Cannot have a child of type:", child.nodeType
136  raise HanCannotCreateConf(msg)
137  except Exception:
138  raise HanCannotCreateConf(
139  "Object:"+str(child)+" is not a valid Node")
140  if not self.subnodes:
141  self.subnodes = []
142  self.subnodes += [child]
143 

◆ appendChild() [2/2]

def python.hanwriter.Node.appendChild (   self,
  child 
)
inherited
Add a sub node to this node

Definition at line 128 of file hanwriter.py.

128  def appendChild(self, child):
129  """
130  Add a sub node to this node
131  """
132  try:
133  if child.nodeType not in self.acceptChild:
134  msg = " Node: "+DQHanConfMaker._get_NodeType(self.nodeType)
135  msg += " Cannot have a child of type:", child.nodeType
136  raise HanCannotCreateConf(msg)
137  except Exception:
138  raise HanCannotCreateConf(
139  "Object:"+str(child)+" is not a valid Node")
140  if not self.subnodes:
141  self.subnodes = []
142  self.subnodes += [child]
143 

◆ getAlgorithm() [1/2]

def python.hanwriter.HanOutput.getAlgorithm (   self)
inherited
Gets the algorithm attribute

Definition at line 470 of file hanwriter.py.

470  def getAlgorithm(self):
471  """
472  Gets the algorithm attribute
473  """
474  if 'algorithm' in self.attributes:
475  return self.getAttribute('algorithm')

◆ getAlgorithm() [2/2]

def python.hanwriter.Document.getAlgorithm (   self,
  name 
)
retrieves the algorithm han object associated with name

Definition at line 546 of file hanwriter.py.

546  def getAlgorithm(self, name):
547  """
548  retrieves the algorithm han object associated with name
549  """
550  return self.getSubNode(name, Node.ALGORITHM)

◆ getAttribute() [1/2]

def python.hanwriter.Node.getAttribute (   self,
  key 
)
inherited
Gets the attribute identified by the key, None if not found

Definition at line 170 of file hanwriter.py.

170  def getAttribute(self, key):
171  """
172  Gets the attribute identified by the key, None if not found
173  """
174  if self.attributes and key in self.attributes:
175  return self.attributes[key]
176  return None

◆ getAttribute() [2/2]

def python.hanwriter.Node.getAttribute (   self,
  key 
)
inherited
Gets the attribute identified by the key, None if not found

Definition at line 170 of file hanwriter.py.

170  def getAttribute(self, key):
171  """
172  Gets the attribute identified by the key, None if not found
173  """
174  if self.attributes and key in self.attributes:
175  return self.attributes[key]
176  return None

◆ getOutputPath()

def python.hanwriter.HanOutput.getOutputPath (   self,
  append = None,
  delimiter = "/" 
)
inherited
Creates the complete path of this output directory

Definition at line 495 of file hanwriter.py.

495  def getOutputPath(self, append=None, delimiter="/"):
496  """
497  Creates the complete path of this output directory
498  """
499  name = self.name
500  if append:
501  name = name + append
502  if self.father:
503  name = self.father.getOutputPath(delimiter+name, delimiter)
504  return name
505 
506 # Class document
507 # This class represents the han document.
508 # This class is a set of nodes
509 
510 

◆ getReference()

def python.hanwriter.Document.getReference (   self,
  name 
)
retrieves the han reference associated with name

Definition at line 555 of file hanwriter.py.

555  def getReference(self, name):
556  """
557  retrieves the han reference associated with name
558  """
559  return self.getSubNode(name, Node.REFERENCE)
560 
561 
562 # Add a DQParameter object to the HanDocument
563 # @param handocument: the document containing the configuration @c handocument: a HanDocument object
564 # @param dqparameter: the DQParameter object @c dqparameter: a DQParameter object
565 # @param output: the output element for the result
566 # @note: This function is used internally and should not be used by users of this module

◆ getSubDir()

def python.hanwriter.HanDir.getSubDir (   self,
  name 
)
inherited
returns the sub-directory called name

Definition at line 429 of file hanwriter.py.

429  def getSubDir(self, name):
430  """
431  returns the sub-directory called name
432  """
433  return self.getSubNode(name, Node.DIR)
434 
435 # Class for han output
436 # This class implements the han output
437 
438 

◆ getSubNode() [1/2]

def python.hanwriter.Node.getSubNode (   self,
  name,
  nodetype 
)
inherited
Returns the sub-node identified by name and nodetype

Definition at line 182 of file hanwriter.py.

182  def getSubNode(self, name, nodetype):
183  """
184  Returns the sub-node identified by name and nodetype
185  """
186  if self.subnodes:
187  for sn in self.subnodes:
188  if sn.nodeType == nodetype and sn.name == name:
189  return sn
190  return None
191 

◆ getSubNode() [2/2]

def python.hanwriter.Node.getSubNode (   self,
  name,
  nodetype 
)
inherited
Returns the sub-node identified by name and nodetype

Definition at line 182 of file hanwriter.py.

182  def getSubNode(self, name, nodetype):
183  """
184  Returns the sub-node identified by name and nodetype
185  """
186  if self.subnodes:
187  for sn in self.subnodes:
188  if sn.nodeType == nodetype and sn.name == name:
189  return sn
190  return None
191 

◆ removeAttribute() [1/2]

def python.hanwriter.Node.removeAttribute (   self,
  key 
)
inherited
Removes attribute identified by key

Definition at line 158 of file hanwriter.py.

158  def removeAttribute(self, key):
159  """
160  Removes attribute identified by key
161  """
162  if self.attributes and key in self.attributes:
163  del self.attributes[key]
164  return True
165  return False

◆ removeAttribute() [2/2]

def python.hanwriter.Node.removeAttribute (   self,
  key 
)
inherited
Removes attribute identified by key

Definition at line 158 of file hanwriter.py.

158  def removeAttribute(self, key):
159  """
160  Removes attribute identified by key
161  """
162  if self.attributes and key in self.attributes:
163  del self.attributes[key]
164  return True
165  return False

◆ setAttribute() [1/2]

def python.hanwriter.Node.setAttribute (   self,
  key,
  attribute 
)
inherited
The attribute identified by key is added to this node

Definition at line 147 of file hanwriter.py.

147  def setAttribute(self, key, attribute):
148  """
149  The attribute identified by key is added to this node
150  """
151  if not self.attributes:
152  self.attributes = {}
153  self.attributes[key] = attribute

◆ setAttribute() [2/2]

def python.hanwriter.Node.setAttribute (   self,
  key,
  attribute 
)
inherited
The attribute identified by key is added to this node

Definition at line 147 of file hanwriter.py.

147  def setAttribute(self, key, attribute):
148  """
149  The attribute identified by key is added to this node
150  """
151  if not self.attributes:
152  self.attributes = {}
153  self.attributes[key] = attribute

◆ tohan() [1/2]

def python.hanwriter.Node.tohan (   self,
  encoding = None 
)
inherited
convert the object in a valid han script block

Definition at line 76 of file hanwriter.py.

76  def tohan(self, encoding=None):
77  """
78  convert the object in a valid han script block
79  """
80  return self.toprettyhan("", "", encoding)
81 

◆ tohan() [2/2]

def python.hanwriter.Node.tohan (   self,
  encoding = None 
)
inherited
convert the object in a valid han script block

Definition at line 76 of file hanwriter.py.

76  def tohan(self, encoding=None):
77  """
78  convert the object in a valid han script block
79  """
80  return self.toprettyhan("", "", encoding)
81 

◆ toprettyhan() [1/2]

def python.hanwriter.Node.toprettyhan (   self,
  indent = "\t",
  newl = "\n",
  encoding = None 
)
inherited
convert the object in a formatted han string

Definition at line 87 of file hanwriter.py.

87  def toprettyhan(self, indent="\t", newl="\n", encoding=None):
88  """
89  convert the object in a formatted han string
90  """
91  # restore the following in a future tdaq release
92  # writer = DQHanConfMaker._get_StringIO()
93  import io
94  import six
95  writer = io.BytesIO() if six.PY2 else io.StringIO()
96  if encoding is not None:
97  import codecs
98  writer = codecs.lookup(encoding)[3](writer)
99  self.writehan(writer, "", indent, newl)
100  return writer.getvalue()
101 

◆ toprettyhan() [2/2]

def python.hanwriter.Node.toprettyhan (   self,
  indent = "\t",
  newl = "\n",
  encoding = None 
)
inherited
convert the object in a formatted han string

Definition at line 87 of file hanwriter.py.

87  def toprettyhan(self, indent="\t", newl="\n", encoding=None):
88  """
89  convert the object in a formatted han string
90  """
91  # restore the following in a future tdaq release
92  # writer = DQHanConfMaker._get_StringIO()
93  import io
94  import six
95  writer = io.BytesIO() if six.PY2 else io.StringIO()
96  if encoding is not None:
97  import codecs
98  writer = codecs.lookup(encoding)[3](writer)
99  self.writehan(writer, "", indent, newl)
100  return writer.getvalue()
101 

◆ writehan() [1/2]

def python.hanwriter.Node.writehan (   self,
  writer,
  indent = "",
  addindent = "",
  newl = "" 
)
inherited
Converts the object in a han string and writes it in the writer object

Definition at line 107 of file hanwriter.py.

107  def writehan(self, writer, indent="", addindent="", newl=""):
108  """
109  Converts the object in a han string and writes it in the writer object
110  """
111  writer.write(
112  indent+DQHanConfMaker._get_NodeType(self.nodeType)+" "+self.name)
113  # if it is a document do not need to add { }
114  if self.nodeType != Node.DOCUMENT:
115  writer.write(" { %s" % (newl))
116  if self.attributes:
117  for key, attribute in self.attributes.items():
118  writer.write("%s %s = %s%s" % (indent, key, attribute, newl))
119  if self.subnodes:
120  for node in self.subnodes:
121  node.writehan(writer, indent+addindent, addindent, newl)
122  if self.nodeType != Node.DOCUMENT:
123  writer.write("%s}%s" % (indent, newl))
124 

◆ writehan() [2/2]

def python.hanwriter.Node.writehan (   self,
  writer,
  indent = "",
  addindent = "",
  newl = "" 
)
inherited
Converts the object in a han string and writes it in the writer object

Definition at line 107 of file hanwriter.py.

107  def writehan(self, writer, indent="", addindent="", newl=""):
108  """
109  Converts the object in a han string and writes it in the writer object
110  """
111  writer.write(
112  indent+DQHanConfMaker._get_NodeType(self.nodeType)+" "+self.name)
113  # if it is a document do not need to add { }
114  if self.nodeType != Node.DOCUMENT:
115  writer.write(" { %s" % (newl))
116  if self.attributes:
117  for key, attribute in self.attributes.items():
118  writer.write("%s %s = %s%s" % (indent, key, attribute, newl))
119  if self.subnodes:
120  for node in self.subnodes:
121  node.writehan(writer, indent+addindent, addindent, newl)
122  if self.nodeType != Node.DOCUMENT:
123  writer.write("%s}%s" % (indent, newl))
124 

Member Data Documentation

◆ acceptChild

python.hanwriter.Document.acceptChild

Definition at line 525 of file hanwriter.py.

◆ attributes [1/2]

python.hanwriter.Node.attributes
inherited

Definition at line 67 of file hanwriter.py.

◆ attributes [2/2]

python.hanwriter.Node.attributes
inherited

Definition at line 67 of file hanwriter.py.

◆ father

python.hanwriter.HanOutput.father
inherited

Definition at line 462 of file hanwriter.py.

◆ name [1/2]

python.hanwriter.Node.name
inherited

Definition at line 71 of file hanwriter.py.

◆ name [2/2]

python.hanwriter.Node.name
inherited

Definition at line 71 of file hanwriter.py.

◆ nodeType

python.hanwriter.Document.nodeType

Definition at line 524 of file hanwriter.py.

◆ root_output_level

python.hanwriter.Document.root_output_level

Definition at line 527 of file hanwriter.py.

◆ subnodes [1/2]

python.hanwriter.Node.subnodes
inherited

Definition at line 66 of file hanwriter.py.

◆ subnodes [2/2]

python.hanwriter.Node.subnodes
inherited

Definition at line 66 of file hanwriter.py.


The documentation for this class was generated from the following file:
TrigJetMonitorAlgorithm.items
items
Definition: TrigJetMonitorAlgorithm.py:79
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18
str
Definition: BTagTrackIpAccessor.cxx:11