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

Public Member Functions

def __init__ (self, lineOptions=None, markerOptions=None, fillStyle=None)
 
def getLine (self)
 
def getMarker (self)
 

Public Attributes

 line
 
 marker
 
 fillStyle
 

Detailed Description

Simple class to automate a few boring things when comes to TStyle in ROOT

Definition at line 168 of file PyRootLib.py.

Constructor & Destructor Documentation

◆ __init__()

def python.PyRootLib.Style.__init__ (   self,
  lineOptions = None,
  markerOptions = None,
  fillStyle = None 
)

Definition at line 172 of file PyRootLib.py.

172  def __init__(self,
173  lineOptions=None, markerOptions=None, fillStyle=None):
174  object.__init__(self)
175  self.line = lineOptions
176  self.marker = markerOptions
177  self.fillStyle = fillStyle
178 
179  if self.line is None:
180  self.line = OptionStyle()
181  if self.marker is None:
182  self.marker = OptionStyle()
183  return

Member Function Documentation

◆ getLine()

def python.PyRootLib.Style.getLine (   self)

Definition at line 184 of file PyRootLib.py.

184  def getLine(self):
185  return self.line

◆ getMarker()

def python.PyRootLib.Style.getMarker (   self)

Definition at line 186 of file PyRootLib.py.

186  def getMarker(self):
187  return self.marker
188 

Member Data Documentation

◆ fillStyle

python.PyRootLib.Style.fillStyle

Definition at line 176 of file PyRootLib.py.

◆ line

python.PyRootLib.Style.line

Definition at line 174 of file PyRootLib.py.

◆ marker

python.PyRootLib.Style.marker

Definition at line 175 of file PyRootLib.py.


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