#ifndef ROOT_TLeafB
#define ROOT_TLeafB
#ifndef ROOT_TLeaf
#include "TLeaf.h"
#endif
class TLeafB : public TLeaf {
protected:
Char_t fMinimum;
Char_t fMaximum;
Char_t *fValue;
Char_t **fPointer;
public:
TLeafB();
TLeafB(const char *name, const char *type);
virtual ~TLeafB();
virtual void Export(TClonesArray *list, Int_t n);
virtual void FillBasket(TBuffer &b);
const char *GetTypeName() const;
Double_t GetValue(Int_t i=0) const;
virtual void *GetValuePointer() const {return fValue;}
virtual void Import(TClonesArray *list, Int_t n);
virtual void PrintValue(Int_t i=0) const;
virtual void ReadBasket(TBuffer &b);
virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
virtual void ReadValue(ifstream & s);
virtual void SetAddress(void *add=0);
ClassDef(TLeafB,1);
};
inline Double_t TLeafB::GetValue(Int_t i) const {
return (IsUnsigned())? (UChar_t)(fValue[i]):fValue[i];
}
#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.