#include "QList.h"

QList<int>


class description - header file - source file - inheritance tree (.pdf)

class QList<int> : public TObject

Inheritance Chart:
TObject
<-
QList<int>

    public:
QList<int>() QList<int>(const QList<int>& newqlist) QList<int>(const int& newelement) QList<int>(const int* newelements, Int_t nelements) virtual ~QList<int>() void Add(const QList<int>& newqlist, Int_t index = -1) void Add(const int& newelement, Int_t index = -1) void Add(const int* newelements, Int_t nelements, Int_t index = -1) static TClass* Class() virtual void Clear(Option_t* option = "") virtual QList<int>* Clone(const char* newname = "") const Int_t Count() const Int_t Del(const int* delus, Int_t nelements = 1, Int_t maxmatches = 1) void Del(Int_t index = -1) Int_t Del(const QList<int>& delqlist, Int_t maxmatches = 1) QList<Int_t> Find(const int& u, Int_t maxmatches = 0) const QList<Int_t> Find(const QList<int>& qlist, Int_t maxmatches = 0) const QList<Int_t> Find(const int* us, Int_t nelements, Int_t maxmatches = 0) const virtual TClass* IsA() const int* operator int*() const const QList<int>& operator()(Int_t index1, Int_t index2, Int_t step = 1) const const QList<int>& operator+=(const QList<int>& newqlist) const QList<int>& operator+=(const int& newu) const QList<int>& operator-=(const int& delu) const QList<int>& operator-=(const QList<int>& delqlist) const QList<int>& operator=(const int& newelement) const QList<int>& operator=(const QList<int>& newqlist) int& operator[](Int_t index) const Int_t RedimList(Int_t newdim, Int_t index = -1) void Set(const int* newelements, Int_t nelements) void Set(const int& newelement) void Set(const QList<int>& newqlist) virtual void ShowMembers(TMemberInspector& insp, char* parent) virtual void Streamer(TBuffer& b) void StreamerNVirtual(TBuffer& b)

Data Members

    private:
Int_t fNElements int* fUArray [fNElements] QList<int>* fChild ! Do not write this member variable into a ROOT file

Class Description

void Add(const QList<U>& newqlist, Int_t index=-1)

void Add(const U& newelement,Int_t index=-1)

void Add(const U* newelements, Int_t nelements, Int_t index=-1)

void Set(const QList<U>& newqlist)

void Set(const U& newelement)

void Set(const U* newelements, Int_t nelements)

Int_t Del(const QList<U>& delqlist, Int_t maxmatches=1)
  Int_t Del(const U& delu, Int_t maxmatches=1);
Int_t Del(const U* delus, Int_t nelements=1, Int_t maxmatches=1)

void Del(Int_t index=-1)

const QList<U>& operator=(const QList<U>& newqlist)


{PRINTF4(this,"\tconst QList<U>& QList<",typeid(U).name(),">::operator=(const QList<U>& newqlist)\n") Set(newqlist); return *this;}
const QList<U>& operator=(const U& newelement)


{PRINTF4(this,"\tconst QList<U>& QList<",typeid(U).name(),">::operator=(const U& newelement)\n") Set(newelement); return *this;}
const QList<U>& operator+=(const QList<U>& newqlist)


{PRINTF4(this,"\tconst QList<U>& QList<",typeid(U).name(),">::operator+=(const QList<U>& newqlist)\n") Add(newqlist); return *this;}
const QList<U>& operator+=(const U& newu)


{PRINTF4(this,"\tconst QList<U>& QList<",typeid(U).name(),">::operator+=(const U& newu)\n") Add(newu); return *this;}
const QList<U>& operator-=(const QList<U>& delqlist)


{PRINTF4(this,"\tconst QList<U>& QList<",typeid(U).name(),">::operator-=(const QList<U>& delqlist)\n") Del(delqlist); return *this;}
const QList<U>& operator-=(const U& delu)


{PRINTF4(this,"\tconst QList<U>& QList<",typeid(U).name(),">::operator-=(const U& delu)\n") Del(&delu); return *this;}
Int_t Count()


{PRINTF4(this,"\tInt_t& QList<",typeid(U).name(),">::Count()\n") return fNElements;}
QList<Int_t> Find(const QList<U>& qlist,Int_t maxmatches=0)

QList<Int_t> Find(const U& u,Int_t maxmatches=0)

QList<Int_t> Find(const U* us, Int_t nelements, Int_t maxmatches=0)

U& operator[](Int_t index)

const QList<U>& operator()(Int_t index1,Int_t index2,Int_t step=1)

QList<U>* Clone(const char* newname = "")


{PRINTF4(this,"\tQList<U>* QList<",typeid(U).name(),">::Clone()\n") newname=0; return new QList<U>(*this); }
Int_t RedimList(Int_t newdim,Int_t index=-1)

void Clear(Option_t* option = "")


Last update: Fri Nov 17 16:35:12 2006


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.