The Gaudi Framework  v36r1 (3e2fb5a8)
Aida2RootEx.Aida2RootEx2 Class Reference
Inheritance diagram for Aida2RootEx.Aida2RootEx2:
Collaboration diagram for Aida2RootEx.Aida2RootEx2:

Public Member Functions

def __init__ (self, name="Aida2RootEx2")
 
def execute (self)
 

Detailed Description

Definition at line 83 of file Aida2RootEx.py.

Constructor & Destructor Documentation

◆ __init__()

def Aida2RootEx.Aida2RootEx2.__init__ (   self,
  name = "Aida2RootEx2" 
)
Standard Constructor 

Definition at line 85 of file Aida2RootEx.py.

85  def __init__(self, name="Aida2RootEx2"):
86  """ Standard Constructor """
87  HistoAlgo.__init__(self, name)
88 

Member Function Documentation

◆ execute()

def Aida2RootEx.Aida2RootEx2.execute (   self)

Definition at line 90 of file Aida2RootEx.py.

90  def execute(self):
91  " The main execution method "
92 
93  # get the service itself
94  s = self.histoSvc()
95 
96  for path in paths:
97  self.Print("AIDA object: '%s'" % path)
98  root = s.getAsROOT(path)
99  if not root:
100  return self.Error("Invalid conversion to ROOT '%s'" % path)
101  # use the native ROOT printout
102  root.Print()
103 
104  return SUCCESS
105 
106 
107 # =============================================================================
108 
109 
110 # =============================================================================
111 # The main configuration method
112 # @author Vanya BELYAEV ibelyaev@physics.syr.edu
113 # @date 2007-01-24

The documentation for this class was generated from the following file:
GaudiPython.Pythonizations.execute
execute
Definition: Pythonizations.py:566