Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TLeafI.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_TLeafI
13#define ROOT_TLeafI
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TLeafI //
19// //
20// A TLeaf for an Integer data type. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24
25#include "TLeaf.h"
26
27class TLeafI : public TLeaf {
28
29protected:
30 Int_t fMinimum; ///< Minimum value if leaf range is specified
31 Int_t fMaximum; ///< Maximum value if leaf range is specified
32 Int_t *fValue; ///<! Pointer to data buffer
33 Int_t **fPointer; ///<! Address of pointer to data buffer
34
35public:
36 TLeafI();
37 TLeafI(TBranch *parent, const char *name, const char *type);
38 ~TLeafI() override;
39
40 void Export(TClonesArray *list, Int_t n) override;
41 void FillBasket(TBuffer &b) override;
43 const char *GetTypeName() const override;
44 Int_t GetMaximum() const override { return fMaximum; }
45 Int_t GetMinimum() const override { return fMinimum; }
46 Double_t GetValue(Int_t i=0) const override;
47 void *GetValuePointer() const override { return fValue; }
48 bool IncludeRange(TLeaf *) override;
49 void Import(TClonesArray *list, Int_t n) override;
50 void PrintValue(Int_t i=0) const override;
51 void ReadBasket(TBuffer &b) override;
52 void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n) override;
53 bool ReadBasketFast(TBuffer&, Long64_t) override;
54 void ReadValue(std::istream& s, Char_t delim = ' ') override;
55 void SetAddress(void *add=nullptr) override;
56 virtual void SetMaximum(Int_t max) {fMaximum = max;}
57 virtual void SetMinimum(Int_t min) {fMinimum = min;}
58
59 ClassDefOverride(TLeafI,1); //A TLeaf for an Integer data type.
60};
61
62#endif
#define b(i)
Definition RSha256.hxx:100
int Int_t
Definition RtypesCore.h:45
char Char_t
Definition RtypesCore.h:37
double Double_t
Definition RtypesCore.h:59
long long Long64_t
Definition RtypesCore.h:80
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
char name[80]
Definition TGX11.cxx:110
A TTree is a list of TBranches.
Definition TBranch.h:93
Buffer base class used for serializing objects.
Definition TBuffer.h:43
An array of clone (identical) objects.
A TLeaf for an Integer data type.
Definition TLeafI.h:27
bool IncludeRange(TLeaf *) override
Copy/set fMinimum and fMaximum to include/be wide than those of the parameter.
Definition TLeafI.cxx:116
Int_t GetMaximum() const override
Definition TLeafI.h:44
Double_t GetValue(Int_t i=0) const override
Returns current value of leaf.
Definition TLeafI.cxx:107
~TLeafI() override
Default destructor for a LeafI.
Definition TLeafI.cxx:54
Int_t ** fPointer
! Address of pointer to data buffer
Definition TLeafI.h:33
void * GetValuePointer() const override
Definition TLeafI.h:47
void Import(TClonesArray *list, Int_t n) override
Import element from ClonesArray into local leaf buffer.
Definition TLeafI.cxx:132
DeserializeType GetDeserializeType() const override
Definition TLeafI.h:42
void PrintValue(Int_t i=0) const override
Prints leaf value.
Definition TLeafI.cxx:148
bool ReadBasketFast(TBuffer &, Long64_t) override
Deserialize input by performing byteswap as needed.
Definition TLeafI.cxx:187
Int_t fMinimum
Minimum value if leaf range is specified.
Definition TLeafI.h:30
Int_t fMaximum
Maximum value if leaf range is specified.
Definition TLeafI.h:31
virtual void SetMaximum(Int_t max)
Definition TLeafI.h:56
void ReadBasket(TBuffer &b) override
Read leaf elements from Basket input buffer.
Definition TLeafI.cxx:162
const char * GetTypeName() const override
Returns name of leaf type.
Definition TLeafI.cxx:96
void ReadValue(std::istream &s, Char_t delim=' ') override
Read an integer from std::istream s and store it into the branch buffer.
Definition TLeafI.cxx:218
void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n) override
Read leaf elements from Basket input buffer and export buffer to TClonesArray objects.
Definition TLeafI.cxx:197
Int_t * fValue
! Pointer to data buffer
Definition TLeafI.h:32
Int_t GetMinimum() const override
Definition TLeafI.h:45
void SetAddress(void *add=nullptr) override
Set leaf buffer data address.
Definition TLeafI.cxx:232
void FillBasket(TBuffer &b) override
Pack leaf elements in Basket output buffer.
Definition TLeafI.cxx:78
void Export(TClonesArray *list, Int_t n) override
Export element from local leaf buffer to ClonesArray.
Definition TLeafI.cxx:62
TLeafI()
Default constructor for LeafI.
Definition TLeafI.cxx:29
virtual void SetMinimum(Int_t min)
Definition TLeafI.h:57
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition TLeaf.h:57
DeserializeType
Definition TLeaf.h:99
const Int_t n
Definition legend1.C:16