/usr/include/root/TLeafS.h is in libroot-tree-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | // @(#)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(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
|