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"
17#include "../../cppyy/CPyCppyy/src/Dimensions.h"
55 branch = tree->GetBranch((std::string(
name) +
'.').c_str());
63 if (branch && !leaf) {
95 if (klass && !tree->GetLeaf(
name) && !(leaves->
GetSize() && (leaves->
First() == leaves->
Last())))
116 std::vector<dim_t> dims;
117 std::stringstream ss{title};
121 getline(ss, substr,
'[');
122 getline(ss, substr,
']');
123 if (!substr.empty()) {
124 dims.push_back(std::stoi(substr));
137 std::vector<dim_t> dimsVec{leaf->
GetNdata()};
138 std::string title = leaf->
GetTitle();
140 if (std::count(title.begin(), title.end(),
'[') >= 2) {
182 PyArg_ParseTuple(args,
"OU:GetBranchAttr", &self, &pyname);
184 const char *name_possibly_alias = PyUnicode_AsUTF8(pyname);
185 if (!name_possibly_alias)
192 PyErr_SetString(PyExc_ReferenceError,
"attempt to access a null-pointer");
197 const char *
name = tree->GetAlias(name_possibly_alias);
199 name = name_possibly_alias;
206 const auto [finalAddressVoidPtr, finalTypeName] =
ResolveBranch(tree,
name, branch);
207 if (!finalTypeName.empty()) {
208 PyObject *outTuple = PyTuple_New(2);
209 PyTuple_SET_ITEM(outTuple, 0, PyLong_FromLongLong((intptr_t)finalAddressVoidPtr));
219 if (wrapper !=
nullptr) {
220 PyObject *outTuple = PyTuple_New(2);
221 PyTuple_SET_ITEM(outTuple, 0, wrapper);
228 PyErr_Format(PyExc_AttributeError,
"\'%s\' object has no attribute \'%s\'", tree->IsA()->GetName(),
name);
240 PyObject *
name =
nullptr, *address =
nullptr, *leaflist =
nullptr, *bufsize =
nullptr;
242 if (PyArg_ParseTuple(args,
"OO!OO!|O!:Branch", &treeObj, &PyUnicode_Type, &
name, &address, &PyUnicode_Type,
243 &leaflist, &PyInt_Type, &bufsize)) {
247 PyErr_SetString(PyExc_TypeError,
"TTree::Branch must be called with a TTree instance as first argument");
260 branch = tree->Branch(PyUnicode_AsUTF8(
name), buf, PyUnicode_AsUTF8(leaflist), PyInt_AS_LONG(bufsize));
262 branch = tree->Branch(PyUnicode_AsUTF8(
name), buf, PyUnicode_AsUTF8(leaflist));
283 PyObject *
name =
nullptr, *clName =
nullptr, *address =
nullptr, *bufsize =
nullptr, *splitlevel =
nullptr;
285 auto bIsMatch =
false;
286 if (PyArg_ParseTuple(args,
"OO!O!O|O!O!:Branch", &treeObj, &PyUnicode_Type, &
name, &PyUnicode_Type, &clName,
287 &address, &PyInt_Type, &bufsize, &PyInt_Type, &splitlevel)) {
291 if (PyArg_ParseTuple(args,
"OO!O|O!O!", &treeObj, &PyUnicode_Type, &
name, &address, &PyInt_Type, &bufsize,
292 &PyInt_Type, &splitlevel)) {
302 PyErr_SetString(PyExc_TypeError,
"TTree::Branch must be called with a TTree instance as first argument");
306 std::string klName = clName ? PyUnicode_AsUTF8(clName) :
"";
316 klName = GetTClass(address)->GetName();
323 if (buf && !klName.empty()) {
326 branch = tree->Branch(PyUnicode_AsUTF8(
name), klName.c_str(), buf);
327 }
else if (argc == 5) {
328 branch = tree->Branch(PyUnicode_AsUTF8(
name), klName.c_str(), buf, PyInt_AS_LONG(bufsize));
329 }
else if (argc == 6) {
330 branch = tree->Branch(PyUnicode_AsUTF8(
name), klName.c_str(), buf, PyInt_AS_LONG(bufsize),
331 PyInt_AS_LONG(splitlevel));
363 int argc = PyTuple_GET_SIZE(args);
367 if (branch != Py_None)
371 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 std::vector< dim_t > getMultiDims(std::string const &title)
Extracts static dimensions from the title of a TLeaf object.
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.
const char * GetTitle() const override
Returns title 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)