// @(#)root/tree:$Id$
// Author: Rene Brun   12/01/96

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TLeafS
#define ROOT_TLeafS


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TLeafS                                                               //
//                                                                      //
// A TLeaf for a 16 bit Integer data type.                              //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TLeaf
#include "TLeaf.h"
#endif

class TLeafS : public TLeaf {

protected:
   Short_t       fMinimum;         //Minimum value if leaf range is specified
   Short_t       fMaximum;         //Maximum value if leaf range is specified
   Short_t       *fValue;          //!Pointer to data buffer
   Short_t       **fPointer;       //!Address of pointer to data buffer

public:
   TLeafS();
   TLeafS(TBranch *parent, const char *name, const char *type);
   virtual ~TLeafS();

   virtual void    Export(TClonesArray *list, Int_t n);
   virtual void    FillBasket(TBuffer &b);
   virtual Int_t   GetMaximum() const { return fMaximum; }
   virtual Int_t   GetMinimum() const { return fMinimum; }
   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(std::istream& s, Char_t delim = ' ');
   virtual void    SetAddress(void *add=0);
   virtual void    SetMaximum(Short_t max) { fMaximum = max; }
   virtual void    SetMinimum(Short_t min) { fMinimum = min; }

   ClassDef(TLeafS,1);  //A TLeaf for a 16 bit Integer data type.
};

#endif
 TLeafS.h:1
 TLeafS.h:2
 TLeafS.h:3
 TLeafS.h:4
 TLeafS.h:5
 TLeafS.h:6
 TLeafS.h:7
 TLeafS.h:8
 TLeafS.h:9
 TLeafS.h:10
 TLeafS.h:11
 TLeafS.h:12
 TLeafS.h:13
 TLeafS.h:14
 TLeafS.h:15
 TLeafS.h:16
 TLeafS.h:17
 TLeafS.h:18
 TLeafS.h:19
 TLeafS.h:20
 TLeafS.h:21
 TLeafS.h:22
 TLeafS.h:23
 TLeafS.h:24
 TLeafS.h:25
 TLeafS.h:26
 TLeafS.h:27
 TLeafS.h:28
 TLeafS.h:29
 TLeafS.h:30
 TLeafS.h:31
 TLeafS.h:32
 TLeafS.h:33
 TLeafS.h:34
 TLeafS.h:35
 TLeafS.h:36
 TLeafS.h:37
 TLeafS.h:38
 TLeafS.h:39
 TLeafS.h:40
 TLeafS.h:41
 TLeafS.h:42
 TLeafS.h:43
 TLeafS.h:44
 TLeafS.h:45
 TLeafS.h:46
 TLeafS.h:47
 TLeafS.h:48
 TLeafS.h:49
 TLeafS.h:50
 TLeafS.h:51
 TLeafS.h:52
 TLeafS.h:53
 TLeafS.h:54
 TLeafS.h:55
 TLeafS.h:56
 TLeafS.h:57
 TLeafS.h:58
 TLeafS.h:59
 TLeafS.h:60