TArrayL Array of longs (32 or 64 bits per element).
Default TArrayL ctor.
Create TArrayL object and set array size to n longs.
Create TArrayL object and initialize it with values of array.
Copy constructor.
TArrayL assignment operator.
Delete TArrayL object.
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.
Add long c at position i. Check for out of bounds.
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.
Stream a TArrayL object.
{array.Set(fN,fArray);}
{ return fArray; }
{ return At(i); }
{Stat_t sum=0; for (Int_t i=0;i<fN;i++) sum+=fArray[i]; return sum;}
{memset(fArray, 0, fN*sizeof(Long_t));}
{for (Int_t i=0;i<fN;i++) fArray[i] = val;}
{ AddAt((Long_t)v, i); }