library: libCore
#include "TArray.h"

TArray


class description - header file - source file
viewCVS header - viewCVS source

class TArray

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
 
    This is an abstract class, constructors will not be documented.
    Look at the header to check for available constructors.

public:
virtual~TArray()
static TClass*Class()
Int_tGetSize() const
virtual TClass*IsA() const
TArray&operator=(const TArray& rhs)
static TArray*ReadArray(TBuffer& b, const TClass* clReq)
virtual voidSet(Int_t n)
virtual voidShowMembers(TMemberInspector& insp, char* parent)
virtual voidStreamer(TBuffer& b)
voidStreamerNVirtual(TBuffer& b)
static voidWriteArray(TBuffer& b, const TArray* a)
protected:
Bool_tBoundsOk(const char* where, Int_t at) const
Bool_tOutOfBoundsError(const char* where, Int_t i) const

Data Members

public:
Int_tfNNumber of array elements

Class Description

                                                                      
 TArray                                                               
                                                                      
 Abstract array base class. Used by TArrayC, TArrayS, TArrayI,        
 TArrayL, TArrayF and TArrayD.                                        
 Data member is public for historical reasons.                        
                                                                      

Bool_t OutOfBoundsError(const char *where, Int_t i)
 Generate an out-of-bounds error. Always returns false.
TArray * ReadArray(TBuffer &b, const TClass *clReq)
 Read TArray object from buffer. Simplified version of
 TBuffer::ReadObject (does not keep track of multiple
 references to same array).
void WriteArray(TBuffer &b, const TArray *a)
 Write TArray object to buffer. Simplified version of
 TBuffer::WriteObject (does not keep track of multiple
 references to the same array).
Bool_t BoundsOk(const char *where, Int_t at)
TArray & operator=(const TArray &rhs)
{if(this!=&rhs) fN = rhs.fN; return *this; }
virtual ~TArray()
{ fN = 0; }
Int_t GetSize()
{ return fN; }
void Set(Int_t n)

Author: Fons Rademakers 21/10/97
Last update: root/cont:$Name: $:$Id: TArray.cxx,v 1.7 2006/04/19 08:22:22 rdm Exp $
Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.