Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TArrayC Class Reference

Array of chars or bytes (8 bits per element).

Definition at line 27 of file TArrayC.h.

Public Member Functions

 TArrayC ()
 Default TArrayC ctor.
 
 TArrayC (const TArrayC &array)
 Copy constructor.
 
 TArrayC (Int_t n)
 Create TArrayC object and set array size to n chars.
 
 TArrayC (Int_t n, const Char_t *array)
 Create TArrayC object and initialize it with values of array.
 
virtual ~TArrayC ()
 Delete TArrayC object.
 
void AddAt (Char_t c, Int_t i)
 Add char c at position i. Check for out of bounds.
 
void Adopt (Int_t n, Char_t *array)
 Adopt array arr into TArrayC, i.e.
 
Char_t At (Int_t i) const
 
void Copy (TArrayC &array) const
 
Char_tGetArray ()
 
const Char_tGetArray () const
 
Double_t GetAt (Int_t i) const override
 
Stat_t GetSum () const
 
TClassIsA () const override
 
TArrayCoperator= (const TArrayC &rhs)
 TArrayC assignment operator.
 
Char_toperator[] (Int_t i)
 
Char_t operator[] (Int_t i) const
 
void Reset (Char_t val=0)
 
void Set (Int_t n) override
 Set size of this array to n chars.
 
void Set (Int_t n, const Char_t *array)
 Set size of this array to n chars and set the contents.
 
void SetAt (Double_t v, Int_t i) override
 
void Streamer (TBuffer &) override
 Stream a TArrayC object.
 
void StreamerNVirtual (TBuffer &ClassDef_StreamerNVirtual_b)
 
- Public Member Functions inherited from TArray
 TArray ()
 
 TArray (const TArray &a)
 
 TArray (Int_t n)
 
virtual ~TArray ()
 
Int_t GetSize () const
 
TArrayoperator= (const TArray &rhs)
 
void StreamerNVirtual (TBuffer &ClassDef_StreamerNVirtual_b)
 

Static Public Member Functions

static TClassClass ()
 
static const char * Class_Name ()
 
static constexpr Version_t Class_Version ()
 
static const char * DeclFileName ()
 
- Static Public Member Functions inherited from TArray
static TClassClass ()
 
static const char * Class_Name ()
 
static constexpr Version_t Class_Version ()
 
static const char * DeclFileName ()
 
static TArrayReadArray (TBuffer &b, const TClass *clReq)
 Read TArray object from buffer.
 
static void WriteArray (TBuffer &b, const TArray *a)
 Write TArray object to buffer.
 

Public Attributes

Char_tfArray
 
- Public Attributes inherited from TArray
Int_t fN
 

Additional Inherited Members

- Protected Member Functions inherited from TArray
Bool_t BoundsOk (const char *where, Int_t at) const
 
Bool_t OutOfBoundsError (const char *where, Int_t i) const
 Generate an out-of-bounds error. Always returns false.
 

#include <TArrayC.h>

Inheritance diagram for TArrayC:
[legend]

Constructor & Destructor Documentation

◆ TArrayC() [1/4]

TArrayC::TArrayC ( )

Default TArrayC ctor.

Definition at line 26 of file TArrayC.cxx.

◆ TArrayC() [2/4]

TArrayC::TArrayC ( Int_t  n)

Create TArrayC object and set array size to n chars.

Definition at line 34 of file TArrayC.cxx.

◆ TArrayC() [3/4]

TArrayC::TArrayC ( Int_t  n,
const Char_t array 
)

Create TArrayC object and initialize it with values of array.

Definition at line 43 of file TArrayC.cxx.

◆ TArrayC() [4/4]

TArrayC::TArrayC ( const TArrayC array)

Copy constructor.

Definition at line 52 of file TArrayC.cxx.

◆ ~TArrayC()

TArrayC::~TArrayC ( )
virtual

Delete TArrayC object.

Definition at line 71 of file TArrayC.cxx.

Member Function Documentation

◆ AddAt()

void TArrayC::AddAt ( Char_t  c,
Int_t  i 
)

Add char c at position i. Check for out of bounds.

Definition at line 93 of file TArrayC.cxx.

◆ Adopt()

void TArrayC::Adopt ( Int_t  n,
Char_t arr 
)

Adopt array arr into TArrayC, i.e.

don't copy arr but use it directly in TArrayC. User may not delete arr, TArrayC dtor will do it.

Definition at line 81 of file TArrayC.cxx.

◆ At()

Char_t TArrayC::At ( Int_t  i) const
inline

Definition at line 78 of file TArrayC.h.

◆ Class()

static TClass * TArrayC::Class ( )
static
Returns
TClass describing this class

◆ Class_Name()

static const char * TArrayC::Class_Name ( )
static
Returns
Name of this class

◆ Class_Version()

static constexpr Version_t TArrayC::Class_Version ( )
inlinestaticconstexpr
Returns
Version of this class

Definition at line 54 of file TArrayC.h.

◆ Copy()

void TArrayC::Copy ( TArrayC array) const
inline

Definition at line 42 of file TArrayC.h.

◆ DeclFileName()

static const char * TArrayC::DeclFileName ( )
inlinestatic
Returns
Name of the file containing the class declaration

Definition at line 54 of file TArrayC.h.

◆ GetArray() [1/2]

Char_t * TArrayC::GetArray ( )
inline

Definition at line 44 of file TArrayC.h.

◆ GetArray() [2/2]

const Char_t * TArrayC::GetArray ( ) const
inline

Definition at line 43 of file TArrayC.h.

◆ GetAt()

Double_t TArrayC::GetAt ( Int_t  i) const
inlineoverridevirtual

Implements TArray.

Definition at line 45 of file TArrayC.h.

◆ GetSum()

Stat_t TArrayC::GetSum ( ) const
inline

Definition at line 46 of file TArrayC.h.

◆ IsA()

TClass * TArrayC::IsA ( ) const
inlineoverridevirtual
Returns
TClass describing current object

Reimplemented from TArray.

Reimplemented in TGLTH3Composition, TH1C, TH2C, and TH3C.

Definition at line 54 of file TArrayC.h.

◆ operator=()

TArrayC & TArrayC::operator= ( const TArrayC rhs)

TArrayC assignment operator.

Definition at line 61 of file TArrayC.cxx.

◆ operator[]() [1/2]

Char_t & TArrayC::operator[] ( Int_t  i)
inline

Definition at line 84 of file TArrayC.h.

◆ operator[]() [2/2]

Char_t TArrayC::operator[] ( Int_t  i) const
inline

Definition at line 91 of file TArrayC.h.

◆ Reset()

void TArrayC::Reset ( Char_t  val = 0)
inline

Definition at line 47 of file TArrayC.h.

◆ Set() [1/2]

void TArrayC::Set ( Int_t  n)
overridevirtual

Set size of this array to n chars.

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.

Implements TArray.

Definition at line 105 of file TArrayC.cxx.

◆ Set() [2/2]

void TArrayC::Set ( Int_t  n,
const Char_t array 
)

Set size of this array to n chars and set the contents.

This function should not be called if the array was declared via Adopt.

Definition at line 132 of file TArrayC.cxx.

◆ SetAt()

void TArrayC::SetAt ( Double_t  v,
Int_t  i 
)
inlineoverridevirtual

Implements TArray.

Definition at line 50 of file TArrayC.h.

◆ Streamer()

void TArrayC::Streamer ( TBuffer b)
overridevirtual

Stream a TArrayC object.

Reimplemented from TArray.

Reimplemented in TGLTH3Composition, TH1C, TH2C, and TH3C.

Definition at line 148 of file TArrayC.cxx.

◆ StreamerNVirtual()

void TArrayC::StreamerNVirtual ( TBuffer ClassDef_StreamerNVirtual_b)
inline

Definition at line 54 of file TArrayC.h.

Member Data Documentation

◆ fArray

Char_t* TArrayC::fArray

Definition at line 30 of file TArrayC.h.

  • core/cont/inc/TArrayC.h
  • core/cont/src/TArrayC.cxx