The Gaudi Framework  v36r13 (995e4364)
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 95 of file Aida2RootEx.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 97 of file Aida2RootEx.py.

97  def __init__(self, name="Aida2RootEx2"):
98  """Standard Constructor"""
99  HistoAlgo.__init__(self, name)
100 

Member Function Documentation

◆ execute()

def Aida2RootEx.Aida2RootEx2.execute (   self)

Definition at line 102 of file Aida2RootEx.py.

102  def execute(self):
103  "The main execution method"
104 
105  # get the service itself
106  s = self.histoSvc()
107 
108  for path in paths:
109  self.Print("AIDA object: '%s'" % path)
110  root = s.getAsROOT(path)
111  if not root:
112  return self.Error("Invalid conversion to ROOT '%s'" % path)
113  # use the native ROOT printout
114  root.Print()
115 
116  return SUCCESS
117 
118 
119 # =============================================================================
120 
121 
122 # =============================================================================
123 # The main configuration method
124 # @author Vanya BELYAEV ibelyaev@physics.syr.edu
125 # @date 2007-01-24

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