The TClonesArray.At in C++ is a function that allows you to access a specific object within a TClonesArray. TClonesArray is a class in the ROOT framework that provides a collection of objects of a certain class. The At function takes an index as an argument and returns a pointer to the object at that index within the TClonesArray. This function is useful when you need to retrieve or manipulate individual objects stored in the array.
C++ (Cpp) TClonesArray::At - 30 examples found. These are the top rated real world C++ (Cpp) examples of TClonesArray::At extracted from open source projects. You can rate examples to help us improve the quality of examples.