ROOT
6.07/01
Reference Guide
|
#include <string>
Go to the source code of this file.
Namespaces | |
PyROOT | |
Functions | |
void | PyROOT::InitRoot () |
PyObject * | PyROOT::GetScopeProxy (Cppyy::TCppScope_t) |
Retrieve scope proxy from the known ones. More... | |
PyObject * | PyROOT::CreateScopeProxy (Cppyy::TCppScope_t) |
Convenience function with a lookup first through the known existing proxies. More... | |
PyObject * | PyROOT::CreateScopeProxy (PyObject *, PyObject *args) |
Build a python shadow class for the named C++ class. More... | |
PyObject * | PyROOT::CreateScopeProxy (const std::string &scope_name, PyObject *parent=0) |
Build a python shadow class for the named C++ class. More... | |
PyObject * | PyROOT::GetCppGlobal (const std::string &name) |
try named global variable/enum (first ROOT, then Cling: sync is too slow) More... | |
PyObject * | PyROOT::GetCppGlobal (PyObject *, PyObject *args) |
get the requested name More... | |
PyObject * | PyROOT::BindCppObjectNoCast (Cppyy::TCppObject_t object, Cppyy::TCppType_t klass, Bool_t isRef=kFALSE, Bool_t isValue=kFALSE) |
only known or knowable objects will be bound (null object is ok) More... | |
PyObject * | PyROOT::BindCppObject (Cppyy::TCppObject_t object, Cppyy::TCppType_t klass, Bool_t isRef=kFALSE) |
if the object is a null pointer, return a typed one (as needed for overloading) More... | |
PyObject * | PyROOT::BindCppObject (Cppyy::TCppObject_t object, const std::string &clName, Bool_t isRef=kFALSE) |
PyObject * | PyROOT::BindCppObjectArray (Cppyy::TCppObject_t address, Cppyy::TCppType_t klass, Int_t size) |
TODO: this function exists for symmetry; need to figure out if it's useful. More... | |
PyObject * | PyROOT::BindCppGlobal (TGlobal *) |
gbl == 0 means global does not exist (rather than gbl is NULL pointer) More... | |