13#include "../../cppyy/CPyCppyy/src/CPyCppyy.h"
14#include "../../cppyy/CPyCppyy/src/CPPInstance.h"
15#include "../../cppyy/CPyCppyy/src/ProxyWrappers.h"
16#include "../../cppyy/CPyCppyy/src/Utility.h"
20#ifdef CPYCPPYY_VERSION_HEX
21#include "../../cppyy/CPyCppyy/src/Dimensions.h"
57 branch = tree->GetBranch((std::string(
name) +
'.').c_str());
65 if (branch && !leaf) {
97 if (klass && !tree->GetLeaf(
name) && !(leaves->
GetSize() && (leaves->
First() == leaves->
Last())))
101 return {
nullptr,
""};
110#ifdef CPYCPPYY_VERSION_HEX
154 PyArg_ParseTuple(args,
"OU:GetBranchAttr", &self, &pyname);
156 const char *name_possibly_alias = PyUnicode_AsUTF8(pyname);
157 if (!name_possibly_alias)
164 PyErr_SetString(PyExc_ReferenceError,
"attempt to access a null-pointer");
169 const char *
name = tree->GetAlias(name_possibly_alias);
171 name = name_possibly_alias;
178 const auto [finalAddressVoidPtr, finalTypeName] =
ResolveBranch(tree,
name, branch);
179 if (!finalTypeName.empty()) {
180 PyObject *outTuple = PyTuple_New(2);
181 PyTuple_SET_ITEM(outTuple, 0, PyLong_FromLongLong((intptr_t)finalAddressVoidPtr));
191 if (wrapper !=
nullptr) {
192 PyObject *outTuple = PyTuple_New(2);
193 PyTuple_SET_ITEM(outTuple, 0, wrapper);
200 PyErr_Format(PyExc_AttributeError,
"\'%s\' object has no attribute \'%s\'", tree->IsA()->GetName(),
name);
212 PyObject *
name =
nullptr, *address =
nullptr, *leaflist =
nullptr, *bufsize =
nullptr;
214 if (PyArg_ParseTuple(args,
"OO!OO!|O!:Branch", &treeObj, &PyUnicode_Type, &
name, &address, &PyUnicode_Type,
215 &leaflist, &PyInt_Type, &bufsize)) {
219 PyErr_SetString(PyExc_TypeError,
"TTree::Branch must be called with a TTree instance as first argument");
232 branch = tree->Branch(PyUnicode_AsUTF8(
name), buf, PyUnicode_AsUTF8(leaflist), PyInt_AS_LONG(bufsize));
234 branch = tree->Branch(PyUnicode_AsUTF8(
name), buf, PyUnicode_AsUTF8(leaflist));
255 PyObject *
name =
nullptr, *clName =
nullptr, *address =
nullptr, *bufsize =
nullptr, *splitlevel =
nullptr;
257 auto bIsMatch =
false;
258 if (PyArg_ParseTuple(args,
"OO!O!O|O!O!:Branch", &treeObj, &PyUnicode_Type, &
name, &PyUnicode_Type, &clName,
259 &address, &PyInt_Type, &bufsize, &PyInt_Type, &splitlevel)) {
263 if (PyArg_ParseTuple(args,
"OO!O|O!O!", &treeObj, &PyUnicode_Type, &
name, &address, &PyInt_Type, &bufsize,
264 &PyInt_Type, &splitlevel)) {
274 PyErr_SetString(PyExc_TypeError,
"TTree::Branch must be called with a TTree instance as first argument");
278 std::string klName = clName ? PyUnicode_AsUTF8(clName) :
"";
288 klName = GetTClass(address)->GetName();
295 if (buf && !klName.empty()) {
298 branch = tree->Branch(PyUnicode_AsUTF8(
name), klName.c_str(), buf);
299 }
else if (argc == 5) {
300 branch = tree->Branch(PyUnicode_AsUTF8(
name), klName.c_str(), buf, PyInt_AS_LONG(bufsize));
301 }
else if (argc == 6) {
302 branch = tree->Branch(PyUnicode_AsUTF8(
name), klName.c_str(), buf, PyInt_AS_LONG(bufsize),
303 PyInt_AS_LONG(splitlevel));
335 int argc = PyTuple_GET_SIZE(args);
339 if (branch != Py_None)
343 if (branch != Py_None)
#define CPyCppyy_PyText_FromString
std::ios_base::fmtflags fFlags
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 Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
static TBranch * SearchForBranch(TTree *tree, const char *name)
PyObject * TryBranchLeafListOverload(int argc, PyObject *args)
Try to match the arguments of TTree::Branch to the following overload:
PyObject * TryBranchPtrToPtrOverloads(int argc, PyObject *args)
Try to match the arguments of TTree::Branch to one of the following overloads:
static std::pair< void *, std::string > ResolveBranch(TTree *tree, const char *name, TBranch *branch)
static TLeaf * SearchForLeaf(TTree *tree, const char *name, TBranch *branch)
static PyObject * WrapLeaf(TLeaf *leaf)
virtual PyObject * FromMemory(void *address)
A Branch for the case of an object.
TStreamerInfo * GetInfo() const
Get streamer info for the branch class.
TClass * GetCurrentClass()
Return a pointer to the current type of the data member corresponding to branch element.
virtual TClass * GetTargetClass()
char * GetObject() const
Return a pointer to our object.
A TTree is a list of TBranches.
virtual TLeaf * GetLeaf(const char *name) const
Return pointer to the 1st Leaf named name in thisBranch.
virtual const char * GetClassName() const
Return the name of the user class whose content is stored in this branch, if any.
virtual char * GetAddress() const
TClass * IsA() const override
TObjArray * GetListOfLeaves()
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.
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
virtual void * GetValuePointer() const
virtual const char * GetTypeName() const
virtual TLeaf * GetLeafCount() const
If this leaf stores a variable-sized array or a multi-dimensional array whose last dimension has vari...
TClass * IsA() const override
virtual Int_t GetNdata() const
TBranch * GetBranch() const
virtual Int_t GetLenStatic() const
Return the fixed length of this leaf.
const char * GetName() const override
Returns name of object.
TObject * Last() const override
Return the object in the last filled slot. Returns 0 if no entries.
TObject * At(Int_t idx) const override
TObject * First() const override
Return the object in the first slot.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
TObjArray * GetElements() const override
A TTree represents a columnar dataset.
Py_ssize_t GetBuffer(PyObject *pyobject, char tc, int size, void *&buf, bool check=true)
bool CPPInstance_Check(T *object)
CPYCPPYY_EXTERN Converter * CreateConverter(const std::string &name, cdims_t=0)
PyObject * BindCppObject(Cppyy::TCppObject_t object, Cppyy::TCppType_t klass, const unsigned flags=0)
CPYCPPYY_EXTERN void * Instance_AsVoidPtr(PyObject *pyobject)
CPYCPPYY_EXTERN void DestroyConverter(Converter *p)
RPY_EXPORTED std::string GetScopedFinalName(TCppType_t type)
RPY_EXPORTED TCppScope_t GetScope(const std::string &scope_name)
PyObject * BranchPyz(PyObject *self, PyObject *args)
Add pythonization for TTree::Branch.
PyObject * GetBranchAttr(PyObject *self, PyObject *args)