Public Member Functions | |
def | configure |
def | AlgHandle |
Returns a handle to the Atlfast::TauMaker instance. | |
Private Attributes | |
_algHandle |
Supplies a handle if needed.
Definition at line 12 of file TauGetter.py.
def python::TauGetter::Atlfast__TauGetter::configure | ( | self | ) |
Creates and configures Atlfast::TauMaker instance. This is done via the genConf autogenerated getter class.
Definition at line 17 of file TauGetter.py.
00017 : 00018 00019 try: 00020 from AtlfastAlgs.AtlfastAlgsConf import Atlfast__TauMaker 00021 except Exception: 00022 mlog = logging.getLogger( 'Atlfast__TauGetter::configure:' ) 00023 mlog.error("could not import AtlfastAlgs.Atlfast__TauMaker") 00024 print traceback.format_exc() 00025 return False 00026 00027 theTauMaker=Atlfast__TauMaker("TauMaker") 00028 self._algHandle_algHandle = theTauMaker; 00029 00030 return True 00031 ## Returns a handle to the Atlfast::TauMaker instance.
def python::TauGetter::Atlfast__TauGetter::AlgHandle | ( | self | ) |
Returns a handle to the Atlfast::TauMaker instance.
Definition at line 34 of file TauGetter.py.
00034 : 00035 return self._algHandle_algHandle return self._algHandle_algHandle
Definition at line 28 of file TauGetter.py.