#ifndef ROOT_TTree
#define ROOT_TTree
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
#ifndef ROOT_TObjArray
#include "TObjArray.h"
#endif
#ifndef ROOT_TClonesArray
#include "TClonesArray.h"
#endif
#ifndef ROOT_TAttLine
#include "TAttLine.h"
#endif
#ifndef ROOT_TAttFill
#include "TAttFill.h"
#endif
#ifndef ROOT_TAttMarker
#include "TAttMarker.h"
#endif
#ifndef ROOT_TBranch
#include "TBranch.h"
#endif
#ifndef ROOT_TArrayD
#include "TArrayD.h"
#endif
#ifndef ROOT_TArrayI
#include "TArrayI.h"
#endif
#ifndef ROOT_TVirtualTreePlayer
#include "TVirtualTreePlayer.h"
#endif
#ifndef ROOT_TDataType
#include "TDataType.h"
#endif
#ifndef ROOT_TROOT
#include "TROOT.h"
#endif
class TBrowser;
class TFile;
class TDirectory;
class TLeaf;
class TH1;
class TTreeFormula;
class TPolyMarker;
class TEventList;
class TSQLResult;
class TSelector;
class TPrincipal;
class TFriendElement;
class TCut;
class TVirtualIndex;
class TBranchRef;
class TTree : public TNamed, public TAttLine, public TAttFill, public TAttMarker {
protected:
Long64_t fEntries;
Long64_t fTotBytes;
Long64_t fZipBytes;
Long64_t fSavedBytes;
Double_t fWeight;
Int_t fTimerInterval;
Int_t fScanField;
Int_t fUpdate;
Long64_t fMaxEntries;
Long64_t fMaxEntryLoop;
Long64_t fMaxVirtualSize;
Long64_t fAutoSave;
Long64_t fEstimate;
Long64_t fCacheSize;
Long64_t fChainOffset;
Long64_t fReadEntry;
Long64_t fTotalBuffers;
Int_t fPacketSize;
Int_t fNfill;
Int_t fDebug;
Long64_t fDebugMin;
Long64_t fDebugMax;
Int_t fMakeClass;
Int_t fFileNumber;
TObject *fNotify;
TDirectory *fDirectory;
TObjArray fBranches;
TObjArray fLeaves;
TList *fAliases;
TEventList *fEventList;
TArrayD fIndexValues;
TArrayI fIndex;
TVirtualIndex *fTreeIndex;
TList *fFriends;
TList *fUserInfo;
TVirtualTreePlayer *fPlayer;
TList *fClones;
TBranchRef *fBranchRef;
UInt_t fFriendLockStatus;
static Int_t fgBranchStyle;
static Long64_t fgMaxTreeSize;
private:
TTree(const TTree& tt);
TTree& operator=(const TTree& tt);
protected:
void AddClone(TTree*);
const char *GetNameByIndex(TString& varexp, Int_t* index, Int_t colindex) const;
virtual void KeepCircular();
virtual void MakeIndex(TString& varexp, Int_t* index);
virtual TFile *ChangeFile(TFile* file);
virtual TBranch *BranchImp(const char* branchname, const char* classname, TClass* ptrClass, void* addobj, Int_t bufsize, Int_t splitlevel);
virtual TBranch *BranchImp(const char* branchname, TClass* ptrClass, void* addobj, Int_t bufsize, Int_t splitlevel);
virtual Bool_t CheckBranchAddressType(TBranch* branch, TClass* ptrClass, EDataType datatype, Bool_t ptr);
class TFriendLock {
TTree *fTree;
UInt_t fMethodBit;
Bool_t fPrevious;
protected:
TFriendLock(const TFriendLock&);
TFriendLock& operator=(const TFriendLock&);
public:
TFriendLock(TTree* tree, UInt_t methodbit);
~TFriendLock();
};
friend class TFriendLock;
enum ELockStatusBits {
kFindBranch = BIT(0),
kFindLeaf = BIT(1),
kGetAlias = BIT(2),
kGetBranch = BIT(3),
kGetEntry = BIT(4),
kGetEntryWithIndex = BIT(5),
kGetFriendAlias = BIT(6),
kGetLeaf = BIT(7),
kLoadTree = BIT(8),
kPrint = BIT(9),
kRemoveFriend = BIT(10),
kSetBranchStatus = BIT(11)
};
public:
enum {
kForceRead = BIT(11),
kCircular = BIT(12)
};
TTree();
TTree(const char* name, const char* title, Int_t splitlevel = 99);
virtual ~TTree();
virtual TFriendElement *AddFriend(const char* treename, const char* filename = "");
virtual TFriendElement *AddFriend(const char* treename, TFile* file);
virtual TFriendElement *AddFriend(TTree* tree, const char* alias = "", Bool_t warn = kFALSE);
virtual void AddTotBytes(Int_t tot) { fTotBytes += tot; }
virtual void AddZipBytes(Int_t zip) { fZipBytes += zip; }
virtual Long64_t AutoSave(Option_t* option = "");
virtual Int_t Branch(TCollection* list, Int_t bufsize = 32000, Int_t splitlevel = 99, const char* name = "");
virtual Int_t Branch(TList* list, Int_t bufsize = 32000, Int_t splitlevel = 99);
virtual Int_t Branch(const char* folder, Int_t bufsize = 32000, Int_t splitlevel = 99);
virtual TBranch *Branch(const char* name, void* address, const char* leaflist, Int_t bufsize = 32000);
#if !defined(__CINT__)
virtual TBranch *Branch(const char* name, const char* classname, void* addobj, Int_t bufsize = 32000, Int_t splitlevel = 99);
#endif
template <class T> TBranch *Branch(const char* name, const char* classname, T** addobj, Int_t bufsize = 32000, Int_t splitlevel = 99)
{
return BranchImp(name, classname, TBuffer::GetClass(typeid(T)), addobj, bufsize, splitlevel);
}
template <class T> TBranch *Branch(const char* name, T** addobj, Int_t bufsize = 32000, Int_t splitlevel = 99)
{
return BranchImp(name, TBuffer::GetClass(typeid(T)), addobj, bufsize, splitlevel);
}
virtual TBranch *Bronch(const char* name, const char* classname, void* addobj, Int_t bufsize = 32000, Int_t splitlevel = 99);
virtual TBranch *BranchOld(const char* name, const char* classname, void* addobj, Int_t bufsize = 32000, Int_t splitlevel = 1);
virtual TBranch *BranchRef();
virtual void Browse(TBrowser*);
virtual Int_t BuildIndex(const char* majorname, const char* minorname = "0");
TStreamerInfo *BuildStreamerInfo(TClass* cl, void* pointer = 0);
virtual TTree *CloneTree(Long64_t nentries = -1, Option_t* option = "");
virtual void CopyAddresses(TTree*);
virtual Long64_t CopyEntries(TTree* tree, Long64_t nentries = -1);
virtual TTree *CopyTree(const char* selection, Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual TBasket *CreateBasket(TBranch*);
Int_t Debug() const { return fDebug; }
virtual void Delete(Option_t* option = "");
virtual void Draw(Option_t* opt) { Draw(opt, "", "", 1000000000, 0); }
virtual Long64_t Draw(const char* varexp, const TCut& selection, Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual Long64_t Draw(const char* varexp, const char* selection, Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual void DropBaskets();
virtual void DropBuffers(Int_t nbytes);
virtual Int_t Fill();
virtual TBranch *FindBranch(const char* name);
virtual TLeaf *FindLeaf(const char* name);
virtual Long64_t Fit(const char* funcname, const char* varexp, const char* selection = "", Option_t* option = "", Option_t* goption = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual const char *GetAlias(const char* aliasName) const;
virtual TBranch *GetBranch(const char* name);
virtual TBranchRef *GetBranchRef() const { return fBranchRef; };
virtual Bool_t GetBranchStatus(const char* branchname) const;
static Int_t GetBranchStyle();
virtual Long64_t GetCacheSize() const { return fCacheSize; }
virtual Long64_t GetChainEntryNumber(Long64_t entry) const { return entry; }
virtual Long64_t GetChainOffset() const { return fChainOffset; }
TFile *GetCurrentFile() const;
Long64_t GetDebugMax() const { return fDebugMax; }
Long64_t GetDebugMin() const { return fDebugMin; }
TDirectory *GetDirectory() const { return fDirectory; }
virtual Long64_t GetEntries() const { return fEntries; }
virtual Long64_t GetEntries(const char *selection);
virtual Long64_t GetEntriesFast() const { return fEntries; }
virtual Long64_t GetEntriesFriend() const;
virtual Long64_t GetEstimate() const { return fEstimate; }
virtual Int_t GetEntry(Long64_t entry = 0, Int_t getall = 0);
Int_t GetEvent(Long64_t entry = 0, Int_t getall = 0) { return GetEntry(entry, getall); }
virtual Int_t GetEntryWithIndex(Int_t major, Int_t minor = 0);
virtual Long64_t GetEntryNumberWithBestIndex(Int_t major, Int_t minor = 0) const;
virtual Long64_t GetEntryNumberWithIndex(Int_t major, Int_t minor = 0) const;
TEventList *GetEventList() const { return fEventList; }
virtual Long64_t GetEntryNumber(Long64_t entry) const;
virtual Int_t GetFileNumber() const { return fFileNumber; }
virtual const char *GetFriendAlias(TTree*) const;
TH1 *GetHistogram() { return GetPlayer()->GetHistogram(); }
virtual Int_t *GetIndex() { return &fIndex.fArray[0]; }
virtual Double_t *GetIndexValues() { return &fIndexValues.fArray[0]; }
virtual TIterator *GetIteratorOnAllLeaves(Bool_t dir = kIterForward);
virtual TLeaf *GetLeaf(const char* name);
virtual TList *GetListOfClones() { return fClones; }
virtual TObjArray *GetListOfBranches() { return &fBranches; }
virtual TObjArray *GetListOfLeaves() { return &fLeaves; }
virtual TList *GetListOfFriends() const { return fFriends; }
virtual TSeqCollection *GetListOfAliases() const { return fAliases; }
Int_t GetMakeClass() const { return fMakeClass; }
virtual Long64_t GetMaxEntryLoop() const { return fMaxEntryLoop; }
virtual Double_t GetMaximum(const char* columname);
static Long64_t GetMaxTreeSize();
virtual Long64_t GetMaxVirtualSize() const { return fMaxVirtualSize; }
virtual Double_t GetMinimum(const char* columname);
virtual Int_t GetNbranches() { return fBranches.GetEntriesFast(); }
TObject *GetNotify() const { return fNotify; }
TVirtualTreePlayer *GetPlayer();
virtual Int_t GetPacketSize() const { return fPacketSize; }
virtual Long64_t GetReadEntry() const { return fReadEntry; }
virtual Long64_t GetReadEvent() const { return fReadEntry; }
virtual Int_t GetScanField() const { return fScanField; }
TTreeFormula *GetSelect() { return GetPlayer()->GetSelect(); }
virtual Long64_t GetSelectedRows() { return GetPlayer()->GetSelectedRows(); }
virtual Int_t GetTimerInterval() const { return fTimerInterval; }
virtual Long64_t GetTotBytes() const { return fTotBytes; }
virtual TTree *GetTree() const { return (TTree*)this; }
virtual TVirtualIndex *GetTreeIndex() const { return fTreeIndex; }
virtual Int_t GetTreeNumber() const { return 0; }
virtual Int_t GetUpdate() const { return fUpdate; }
virtual TList *GetUserInfo();
TTreeFormula *GetVar1() { return GetPlayer()->GetVar1(); }
TTreeFormula *GetVar2() { return GetPlayer()->GetVar2(); }
TTreeFormula *GetVar3() { return GetPlayer()->GetVar3(); }
TTreeFormula *GetVar4() { return GetPlayer()->GetVar4(); }
virtual Double_t *GetV1() { return GetPlayer()->GetV1(); }
virtual Double_t *GetV2() { return GetPlayer()->GetV2(); }
virtual Double_t *GetV3() { return GetPlayer()->GetV3(); }
virtual Double_t *GetV4() { return GetPlayer()->GetV4(); }
virtual Double_t *GetW() { return GetPlayer()->GetW(); }
virtual Double_t GetWeight() const { return fWeight; }
virtual Long64_t GetZipBytes() const { return fZipBytes; }
virtual void IncrementTotalBuffers(Int_t nbytes) { fTotalBuffers += nbytes; }
Bool_t IsFolder() const { return kTRUE; }
virtual Int_t LoadBaskets(Long64_t maxmemory = 2000000000);
virtual Long64_t LoadTree(Long64_t entry);
virtual Long64_t LoadTreeFriend(Long64_t entry, TTree* T);
virtual Int_t MakeClass(const char* classname = 0, Option_t* option = "");
virtual Int_t MakeCode(const char* filename = 0);
virtual Int_t MakeProxy(const char* classname, const char* macrofilename = 0, const char* cutfilename = 0, const char* option = 0, Int_t maxUnrolling = 3);
virtual Int_t MakeSelector(const char* selector = 0);
Bool_t MemoryFull(Int_t nbytes);
virtual Long64_t Merge(TCollection* list, Option_t* option = "");
static TTree *MergeTrees(TList* list, Option_t* option = "");
virtual Bool_t Notify();
TPrincipal *Principal(const char* varexp = "", const char* selection = "", Option_t* option = "np", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual void Print(Option_t* option = "") const;
virtual Long64_t Process(const char* filename, Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual Long64_t Process(TSelector* selector, Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual Long64_t Project(const char* hname, const char* varexp, const char* selection = "", Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual TSQLResult *Query(const char* varexp = "", const char* selection = "", Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual Long64_t ReadFile(const char* filename, const char* branchDescriptor = "");
virtual void Refresh();
virtual void RemoveFriend(TTree*);
virtual void Reset(Option_t* option = "");
virtual void ResetBranchAddresses();
virtual Long64_t Scan(const char* varexp = "", const char* selection = "", Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
virtual Bool_t SetAlias(const char* aliasName, const char* aliasFormula);
virtual void SetAutoSave(Long64_t autos = 10000000) { fAutoSave=autos; }
virtual void SetBasketSize(const char* bname, Int_t buffsize = 16000);
#if !defined(__CINT__)
virtual void SetBranchAddress(const char *bname,void *add, TBranch **ptr = 0);
#endif
virtual void SetBranchAddress(const char *bname,void *add, TClass *realClass, EDataType datatype, Bool_t isptr);
virtual void SetBranchAddress(const char *bname,void *add, TBranch **ptr, TClass *realClass, EDataType datatype, Bool_t isptr);
template <class T> void SetBranchAddress(const char *bname, T **add, TBranch **ptr = 0) {
SetBranchAddress(bname,add,ptr,gROOT->GetClass(typeid(T)),TDataType::GetType(typeid(T)),true);
}
#ifndef R__NO_CLASS_TEMPLATE_SPECIALIZATION
template <class T> void SetBranchAddress(const char *bname, T *add, TBranch **ptr = 0) {
SetBranchAddress(bname,add,ptr,gROOT->GetClass(typeid(T)),TDataType::GetType(typeid(T)),false);
}
#endif
virtual void SetBranchStatus(const char* bname, Bool_t status = 1, UInt_t* found = 0);
static void SetBranchStyle(Int_t style = 1);
virtual void SetCacheSize(Long64_t cachesize = 10000000);
virtual void SetChainOffset(Long64_t offset = 0) { fChainOffset=offset; }
virtual void SetCircular(Long64_t maxEntries);
virtual void SetDebug(Int_t level = 1, Long64_t min = 0, Long64_t max = 9999999);
virtual void SetDirectory(TDirectory* dir);
virtual Long64_t SetEntries(Long64_t n = -1);
virtual void SetEstimate(Long64_t nentries = 10000);
virtual void SetFileNumber(Int_t number = 0);
virtual void SetEventList(TEventList* list) { fEventList = list; }
virtual void SetMakeClass(Int_t make) { fMakeClass = make; }
virtual void SetMaxEntryLoop(Long64_t maxev = 1000000000) { fMaxEntryLoop = maxev; }
static void SetMaxTreeSize(Long64_t maxsize = 1900000000);
virtual void SetMaxVirtualSize(Long64_t size = 0) { fMaxVirtualSize = size; }
virtual void SetName(const char* name);
virtual void SetNotify(TObject* obj) { fNotify = obj; }
virtual void SetObject(const char* name, const char* title);
virtual void SetScanField(Int_t n = 50) { fScanField = n; }
virtual void SetTimerInterval(Int_t msec = 333) { fTimerInterval=msec; }
virtual void SetTreeIndex(TVirtualIndex*index);
virtual void SetWeight(Double_t w = 1, Option_t* option = "");
virtual void SetUpdate(Int_t freq = 0) { fUpdate = freq; }
virtual void Show(Long64_t entry = -1, Int_t lenmax = 20);
virtual void StartViewer();
virtual Long64_t UnbinnedFit(const char* funcname, const char* varexp, const char* selection = "", Option_t* option = "", Long64_t nentries = 1000000000, Long64_t firstentry = 0);
void UseCurrentStyle();
ClassDef(TTree,16)
};
class TTreeFriendLeafIter : public TIterator {
protected:
TTree *fTree;
TIterator *fLeafIter;
TIterator *fTreeIter;
Bool_t fDirection;
TTreeFriendLeafIter() : fTree(0), fLeafIter(0), fTreeIter(0),
fDirection(0) { }
public:
TTreeFriendLeafIter(const TTree* t, Bool_t dir = kIterForward);
TTreeFriendLeafIter(const TTreeFriendLeafIter &iter);
~TTreeFriendLeafIter() { SafeDelete(fLeafIter); SafeDelete(fTreeIter); }
TIterator &operator=(const TIterator &rhs);
TTreeFriendLeafIter &operator=(const TTreeFriendLeafIter &rhs);
const TCollection *GetCollection() const { return 0; }
Option_t *GetOption() const;
TObject *Next();
void Reset() { SafeDelete(fLeafIter); SafeDelete(fTreeIter); }
ClassDef(TTreeFriendLeafIter,0)
};
#endif
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.