Logo ROOT  
Reference Guide
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#include "TLeaf.h"
25
26class TLeafS : public TLeaf {
27
28protected:
29 Short_t fMinimum; ///< Minimum value if leaf range is specified
30 Short_t fMaximum; ///< Maximum value if leaf range is specified
31 Short_t *fValue; ///<! Pointer to data buffer
32 Short_t **fPointer; ///<! Address of pointer to data buffer
33
34public:
35 TLeafS();
36 TLeafS(TBranch *parent, const char *name, const char *type);
37 virtual ~TLeafS();
38
39 virtual void Export(TClonesArray *list, Int_t n);
40 virtual void FillBasket(TBuffer &b);
41 virtual Int_t GetMaximum() const { return fMaximum; }
42 virtual Int_t GetMinimum() const { return fMinimum; }
43 const char *GetTypeName() const;
44 Double_t GetValue(Int_t i=0) const;
45 virtual void *GetValuePointer() const { return fValue; }
46 virtual Bool_t IncludeRange(TLeaf *);
47 virtual void Import(TClonesArray *list, Int_t n);
48 virtual void PrintValue(Int_t i=0) const;
49 virtual void ReadBasket(TBuffer &b);
50 virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
51 virtual bool ReadBasketFast(TBuffer&, Long64_t);
53 virtual void ReadValue(std::istream& s, Char_t delim = ' ');
54 virtual void SetAddress(void *add=0);
55 virtual void SetMaximum(Short_t max) { fMaximum = max; }
56 virtual void SetMinimum(Short_t min) { fMinimum = min; }
57
58 ClassDef(TLeafS,1); //A TLeaf for a 16 bit Integer data type.
59};
60
61#endif
#define b(i)
Definition: RSha256.hxx:100
int Int_t
Definition: RtypesCore.h:41
char Char_t
Definition: RtypesCore.h:29
bool Bool_t
Definition: RtypesCore.h:59
short Short_t
Definition: RtypesCore.h:35
double Double_t
Definition: RtypesCore.h:55
long long Long64_t
Definition: RtypesCore.h:69
#define ClassDef(name, id)
Definition: Rtypes.h:326
char name[80]
Definition: TGX11.cxx:109
int type
Definition: TGX11.cxx:120
A TTree is a list of TBranches.
Definition: TBranch.h:91
Buffer base class used for serializing objects.
Definition: TBuffer.h:42
An array of clone (identical) objects.
Definition: TClonesArray.h:32
A TLeaf for a 16 bit Integer data type.
Definition: TLeafS.h:26
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:193
Short_t fMaximum
Maximum value if leaf range is specified.
Definition: TLeafS.h:30
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafS.cxx:62
Short_t fMinimum
Minimum value if leaf range is specified.
Definition: TLeafS.h:29
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafS.cxx:128
virtual bool ReadBasketSerialized(TBuffer &, Long64_t)
Definition: TLeafS.h:52
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafS.cxx:225
virtual Int_t GetMaximum() const
Definition: TLeafS.h:41
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafS.cxx:144
virtual Bool_t IncludeRange(TLeaf *)
Copy/set fMinimum and fMaximum to include/be wide than those of the parameter.
Definition: TLeafS.cxx:112
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:211
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafS.cxx:158
Double_t GetValue(Int_t i=0) const
Returns current value of leaf.
Definition: TLeafS.cxx:103
virtual void SetMinimum(Short_t min)
Definition: TLeafS.h:56
Short_t * fValue
! Pointer to data buffer
Definition: TLeafS.h:31
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafS.cxx:74
virtual bool ReadBasketFast(TBuffer &, Long64_t)
Deserialize input by performing byteswap as needed.
Definition: TLeafS.cxx:183
virtual void SetMaximum(Short_t max)
Definition: TLeafS.h:55
TLeafS()
Default constructor for LeafS.
Definition: TLeafS.cxx:29
const char * GetTypeName() const
Returns name of leaf type.
Definition: TLeafS.cxx:92
virtual void * GetValuePointer() const
Definition: TLeafS.h:45
Short_t ** fPointer
! Address of pointer to data buffer
Definition: TLeafS.h:32
virtual Int_t GetMinimum() const
Definition: TLeafS.h:42
virtual ~TLeafS()
Default destructor for a LeafS.
Definition: TLeafS.cxx:54
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:49
virtual DeserializeType GetDeserializeType() const
Definition: TLeaf.h:108
const Int_t n
Definition: legend1.C:16
static constexpr double s