#ifndef ROOT_TBranchProxyClassDescriptor
#define ROOT_TBranchProxyClassDescriptor
#ifndef ROOT_TList
#include "TList.h"
#endif
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
class TTree;
class TVirtualStreamerInfo;
namespace ROOT {
class TBranchProxyDescriptor;
class TBranchProxyClassDescriptor : public TNamed {
public:
typedef enum { kOut=0, kClones, kInsideClones } EInClones;
private:
TList fListOfSubProxies;
TList fListOfBaseProxies;
UInt_t fIsClones;
Bool_t fIsLeafList;
UInt_t fSplitLevel;
TString fRawSymbol;
TString fBranchName;
TString fSubBranchPrefix;
TVirtualStreamerInfo *fInfo;
UInt_t fMaxDatamemberType;
void NameToSymbol();
public:
TBranchProxyClassDescriptor(const char *type, TVirtualStreamerInfo *info, const char *branchname,
UInt_t isclones, UInt_t splitlevel);
TBranchProxyClassDescriptor(const char *branchname);
TBranchProxyClassDescriptor(const char *type, TVirtualStreamerInfo *info, const char *branchname,
const char *branchPrefix, UInt_t isclones,
UInt_t splitlevel);
TBranchProxyClassDescriptor(const TBranchProxyClassDescriptor &b) :TNamed(b){;}
TBranchProxyClassDescriptor& operator=(const TBranchProxyClassDescriptor&) {return *this;}
const char* GetBranchName() const;
const char* GetSubBranchPrefix() const;
const char* GetRawSymbol() const;
TVirtualStreamerInfo *GetInfo() const { return fInfo; }
UInt_t GetSplitLevel() const;
virtual Bool_t IsEquivalent(const TBranchProxyClassDescriptor* other);
void AddDescriptor(TBranchProxyDescriptor *desc, Bool_t isBase);
Bool_t IsLoaded() const;
Bool_t IsClones() const;
UInt_t GetIsClones() const;
void OutputDecl(FILE *hf, int offset, UInt_t );
ClassDef(TBranchProxyClassDescriptor,0);
};
}
#endif
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.