library: libCore #include "TArrayL.h" |
TArrayL() | |
TArrayL(Int_t n) | |
TArrayL(const TArrayL& array) | |
TArrayL(Int_t n, const Long_t* array) | |
virtual | ~TArrayL() |
void | AddAt(Long_t c, Int_t i) |
void | Adopt(Int_t n, Long_t* array) |
Long_t | At(Int_t i) const |
static TClass* | Class() |
void | Copy(TArrayL& array) const |
const Long_t* | GetArray() const |
Long_t* | GetArray() |
Int_t | TArray::GetSize() const |
Stat_t | GetSum() const |
virtual TClass* | IsA() const |
TArrayL& | operator=(const TArrayL& rhs) |
Long_t& | operator[](Int_t i) |
Long_t | operator[](Int_t i) const |
static TArray* | TArray::ReadArray(TBuffer& b, const TClass* clReq) |
void | Reset() |
void | Reset(Long_t val) |
virtual void | Set(Int_t n) |
void | Set(Int_t n, const Long_t* array) |
virtual void | ShowMembers(TMemberInspector& insp, char* parent) |
virtual void | Streamer(TBuffer& b) |
void | StreamerNVirtual(TBuffer& b) |
static void | TArray::WriteArray(TBuffer& b, const TArray* a) |
Bool_t | TArray::BoundsOk(const char* where, Int_t at) const |
Bool_t | TArray::OutOfBoundsError(const char* where, Int_t i) const |
Long_t* | fArray | [fN] Array of fN longs |
Int_t | TArray::fN | Number of array elements |
TArrayL Array of longs (32 or 64 bits per element).
Adopt array arr into TArrayL, i.e. don't copy arr but use it directly in TArrayL. User may not delete arr, TArrayL dtor will do it.
Set size of this array to n longs. A new array is created, the old contents copied to the new array, then the old array is deleted. This function should not be called if the array was declared via Adopt.
Set size of this array to n longs and set the contents. This function should not be called if the array was declared via Adopt.