ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TLeafS.h
Go to the documentation of this file.
1 // @(#)root/tree:$Id$
2 // Author: Rene Brun 12/01/96
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TLeafS
13 #define ROOT_TLeafS
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TLeafS //
19 // //
20 // A TLeaf for a 16 bit Integer data type. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #ifndef ROOT_TLeaf
25 #include "TLeaf.h"
26 #endif
27 
28 class TLeafS : public TLeaf {
29 
30 protected:
31  Short_t fMinimum; //Minimum value if leaf range is specified
32  Short_t fMaximum; //Maximum value if leaf range is specified
33  Short_t *fValue; //!Pointer to data buffer
34  Short_t **fPointer; //!Address of pointer to data buffer
35 
36 public:
37  TLeafS();
38  TLeafS(TBranch *parent, const char *name, const char *type);
39  virtual ~TLeafS();
40 
41  virtual void Export(TClonesArray *list, Int_t n);
42  virtual void FillBasket(TBuffer &b);
43  virtual Int_t GetMaximum() const { return fMaximum; }
44  virtual Int_t GetMinimum() const { return fMinimum; }
45  const char *GetTypeName() const;
46  Double_t GetValue(Int_t i=0) const;
47  virtual void *GetValuePointer() const {return fValue;}
48  virtual void Import(TClonesArray *list, Int_t n);
49  virtual void PrintValue(Int_t i=0) const;
50  virtual void ReadBasket(TBuffer &b);
51  virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
52  virtual void ReadValue(std::istream& s, Char_t delim = ' ');
53  virtual void SetAddress(void *add=0);
54  virtual void SetMaximum(Short_t max) { fMaximum = max; }
55  virtual void SetMinimum(Short_t min) { fMinimum = min; }
56 
57  ClassDef(TLeafS,1); //A TLeaf for a 16 bit Integer data type.
58 };
59 
60 #endif
virtual void ReadValue(std::istream &s, Char_t delim= ' ')
Read a integer integer from std::istream s and store it into the branch buffer.
Definition: TLeafS.cxx:185
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:37
virtual Int_t GetMaximum() const
Definition: TLeafS.h:43
static Vc_ALWAYS_INLINE int_v min(const int_v &x, const int_v &y)
Definition: vector.h:433
Buffer base class used for serializing objects.
Definition: TBuffer.h:42
TLeafS()
Address of pointer to data buffer.
int Int_t
Definition: RtypesCore.h:41
virtual void SetMaximum(Short_t max)
Definition: TLeafS.h:54
virtual void * GetValuePointer() const
Definition: TLeafS.h:47
virtual Int_t GetMinimum() const
Definition: TLeafS.h:44
ClassDef(TLeafS, 1)
virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n)
Read leaf elements from Basket input buffer and export buffer to TClonesArray objects.
Definition: TLeafS.cxx:167
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafS.cxx:110
Short_t fMaximum
Definition: TLeafS.h:32
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafS.cxx:140
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafS.cxx:199
Double_t GetValue(Int_t i=0) const
Returns current value of leaf.
Definition: TLeafS.cxx:101
Short_t * fValue
Definition: TLeafS.h:33
virtual void SetMinimum(Short_t min)
Definition: TLeafS.h:55
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafS.cxx:60
short Short_t
Definition: RtypesCore.h:35
const char * GetTypeName() const
Returns name of leaf type.
Definition: TLeafS.cxx:90
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafS.cxx:126
double Double_t
Definition: RtypesCore.h:55
int type
Definition: TGX11.cxx:120
Short_t ** fPointer
Pointer to data buffer.
Definition: TLeafS.h:34
static Vc_ALWAYS_INLINE int_v max(const int_v &x, const int_v &y)
Definition: vector.h:440
#define name(a, b)
Definition: linkTestLib0.cpp:5
char Char_t
Definition: RtypesCore.h:29
A TLeaf for a 16 bit Integer data type.
Definition: TLeafS.h:28
An array of clone (identical) objects.
Definition: TClonesArray.h:32
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafS.cxx:72
A TTree is a list of TBranches.
Definition: TBranch.h:58
Short_t fMinimum
Definition: TLeafS.h:31
const Int_t n
Definition: legend1.C:16
virtual ~TLeafS()
Default destructor for a LeafS.
Definition: TLeafS.cxx:52