#ifndef ROOT_TLeafD #define ROOT_TLeafD //+SEQ,CopyRight,T=NOINCLUDE. ////////////////////////////////////////////////////////////////////////// // // // TLeafD // // // // A TLeaf for a 64 bit floating point data type. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TLeaf //*KEEP,TLeaf,T=C++. #include "TLeaf.h" //*KEND. #endif class TLeafD : public TLeaf { protected: Double_t fMinimum; //Minimum value if leaf range is specified Double_t fMaximum; //Maximum value if leaf range is specified Double_t *fValue; //!Pointer to data buffer public: TLeafD(); TLeafD(const Text_t *name, const Text_t *type); virtual ~TLeafD(); virtual void Export(TClonesArray *list, Int_t n); virtual void FillBasket(TBuffer &b); const Text_t *GetTypeName() const {return "Double_t";} Float_t GetValue(Int_t i=0); virtual void *GetValuePointer() {return fValue;} virtual void Import(TClonesArray *list, Int_t n); virtual void Print(Option_t *option=""); virtual void ReadBasket(TBuffer &b); virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n); virtual void SetAddress(void *add=0); ClassDef(TLeafD,1) //A TLeaf for a 64 bit floating point data type. }; inline Float_t TLeafD::GetValue(Int_t i) { return fValue[i]; } #endif