#ifndef ROOT_TBranchProxyDescriptor
#define ROOT_TBranchProxyDescriptor
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
namespace ROOT {
class TBranchProxyDescriptor : public TNamed {
TString fDataName;
TString fBranchName;
Bool_t fIsSplit;
Bool_t fBranchIsSkipped;
public:
TBranchProxyDescriptor(const char *dataname, const char *type,
const char *branchname, Bool_t split = true, Bool_t skipped = false);
const char *GetDataName();
const char *GetTypeName();
const char *GetBranchName();
Bool_t IsEquivalent(const TBranchProxyDescriptor *other, Bool_t inClass = kFALSE);
Bool_t IsSplit() const;
void OutputDecl(FILE *hf, int offset, UInt_t maxVarname);
void OutputInit(FILE *hf, int offset, UInt_t maxVarname,
const char *prefix);
ClassDef(TBranchProxyDescriptor,0);
};
}
#endif
Last change: Wed Jun 25 08:30:51 2008
Last generated: 2008-06-25 08:30
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.