TArrayI Array of integers (32 bits per element).
Default TArrayI ctor.
Create TArrayI object and set array size to n integers.
Create TArrayI object and initialize it with values of array.
Copy constructor.
TArrayI assignment operator.
Delete TArrayI object.
Adopt array arr into TArrayI, i.e. don't copy arr but use it directly in TArrayI. User may not delete arr, TArrayI dtor will do it.
Add Int_t c at position i. Check for out of bounds.
Set size of this array to n ints. 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 ints and set the contents. This function should not be called if the array was declared via Adopt.
Stream a TArrayI 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(Int_t));}
{for (Int_t i=0;i<fN;i++) fArray[i] = val;}
{ AddAt((Int_t)v, i); }