17#include "TPyClassGenerator.h"
102class CachedPyString {
107 CachedPyString(CachedPyString
const &) =
delete;
108 CachedPyString(CachedPyString &&) =
delete;
109 CachedPyString &
operator=(CachedPyString
const &) =
delete;
110 CachedPyString &
operator=(CachedPyString &&) =
delete;
125 PyGILState_STATE m_GILState;
141 const std::lock_guard<std::mutex> lock(
initMutex);
149#if PY_VERSION_HEX < 0x03020000
154#if PY_VERSION_HEX < 0x03000000
155 char *
argv[] = {
const_cast<char *
>(
"root")};
157 wchar_t *
argv[] = {
const_cast<wchar_t *
>(L
"root")};
160#if PY_VERSION_HEX < 0x030b0000
171 std::cerr <<
"Error when setting command line arguments." << std::endl;
178 std::cerr <<
"Error when initializing Python." << std::endl;
183#if PY_VERSION_HEX >= 0x03020000
184#if PY_VERSION_HEX < 0x03090000
192 std::cerr <<
"Error: python has not been intialized; returning." << std::endl;
196#if PY_VERSION_HEX < 0x030b0000
210 std::cerr <<
"Error: import ROOT failed, check your PYTHONPATH environmental variable." << std::endl;
229 isInitialized =
kTRUE;
256 CachedPyString
basesStr{
"__bases__"};
258 CachedPyString
nameStr{
"__name__"};
317#if PY_VERSION_HEX < 0x03000000
318 Exec((std::string(
"execfile(\"") +
name +
"\")").c_str());
320 Exec((std::string(
"__pyroot_f = open(\"") +
name +
322 "exec(__pyroot_f.read()); "
323 "__pyroot_f.close(); del __pyroot_f")
330 CachedPyString
basesStr{
"__bases__"};
332 CachedPyString
nameStr{
"__name__"};
392 std::cerr <<
"Error: no file name specified." << std::endl;
396 std::vector<std::string> args(
argc);
397 for (
int i = 0; i <
argc; ++i) {
438 command <<
"; ROOT.Internal.SwapWithObjAtAddr['std::any'](" <<
resultName <<
", "
439 <<
reinterpret_cast<std::intptr_t
>(
result) <<
")";
491 CachedPyString
nameStr{
"__name__"};
495 PyObject *
module = PyObject_GetAttr(pyclass, moduleStr.obj());
548void TPython::Prompt()
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
static PyObject * gMainDict
Binding & operator=(OUT(*fun)(void))
TClass instances represent classes, structs and namespaces in the ROOT type system.
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
Mother of all ROOT objects.
Accessing the Python interpreter from C++.
static void ExecScript(const char *name, int argc=0, const char **argv=nullptr)
Execute a python stand-alone script, with argv CLI arguments.
static Bool_t Import(const char *name)
Import the named python module and create Cling equivalents for its classes and methods.
static void LoadMacro(const char *name)
Execute the give python script as if it were a macro (effectively an execfile in main),...
static Bool_t Exec(const char *cmd, std::any *result=nullptr, std::string const &resultName="_anyresult")
Executes a Python command within the current Python environment.
static const TPyReturn Eval(const char *expr) R__DEPRECATED(6
Evaluate a python expression (e.g.
static Bool_t Initialize()
Initialization method: setup the python interpreter and load the ROOT module.
CPYCPPYY_EXTERN bool Instance_CheckExact(PyObject *pyobject)
CPYCPPYY_EXTERN bool Overload_Check(PyObject *pyobject)
CPYCPPYY_EXTERN bool Overload_CheckExact(PyObject *pyobject)
CPYCPPYY_EXTERN bool Import(const std::string &name)
CPYCPPYY_EXTERN void ExecScript(const std::string &name, const std::vector< std::string > &args)
CPYCPPYY_EXTERN bool Instance_Check(PyObject *pyobject)
CPYCPPYY_EXTERN PyObject * Instance_FromVoidPtr(void *addr, const std::string &classname, bool python_owns=false)
CPYCPPYY_EXTERN void * Instance_AsVoidPtr(PyObject *pyobject)