00001 #!/usr/bin/env python 00002 ''' 00003 Interface to Gaudi 00004 ''' 00005 00006 import GaudiPython 00007 00008 def uiSvc(): 00009 svcLoc = GaudiPython.gbl.Gaudi.svcLocator() 00010 svc = GaudiPython.Helper.service(svcLoc, 'OnXSvc',1) 00011 return GaudiPython.InterfaceCast('IUserInterfaceSvc').cast(svc) 00012 00013 import OnX 00014 00015 def session(): return OnX.session() 00016 00017
1.4.7