#ifndef ROOT_TLeafO
#define ROOT_TLeafO
#ifndef ROOT_TLeaf
#include "TLeaf.h"
#endif
class TLeafO : public TLeaf {
protected:
   Bool_t       fMinimum;         
   Bool_t       fMaximum;         
   Bool_t       *fValue;          
   Bool_t       **fPointer;       
public:
   TLeafO();
   TLeafO(TBranch *parent, const char *name, const char *type);
   virtual ~TLeafO();
   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(TLeafO,1);  
};
inline Double_t TLeafO::GetValue(Int_t i) const { return fValue[i]; }
#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.