/usr/include/root/TLeafElement.h is in libroot-tree-dev 5.34.14-1build1.
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 61 | // @(#)root/tree:$Id$
// Author: Rene Brun 14/01/2001
/*************************************************************************
* 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_TLeafElement
#define ROOT_TLeafElement
//////////////////////////////////////////////////////////////////////////
// //
// TLeafElement //
// //
// A TLeaf for a general object derived from TObject. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TLeaf
#include "TLeaf.h"
#endif
#ifndef ROOT_TBranchElement
#include "TBranchElement.h"
#endif
class TMethodCall;
class TLeafElement : public TLeaf {
protected:
char *fAbsAddress; //! Absolute leaf Address
Int_t fID; //element serial number in fInfo
Int_t fType; //leaf type
public:
TLeafElement();
TLeafElement(TBranch *parent, const char *name, Int_t id, Int_t type);
virtual ~TLeafElement();
virtual Int_t GetLen() const {return ((TBranchElement*)fBranch)->GetNdata()*fLen;}
TMethodCall *GetMethodCall(const char *name);
virtual Int_t GetMaximum() const {return ((TBranchElement*)fBranch)->GetMaximum();}
virtual Int_t GetNdata() const {return ((TBranchElement*)fBranch)->GetNdata()*fLen;}
virtual const char *GetTypeName() const {return ((TBranchElement*)fBranch)->GetTypeName();}
virtual Double_t GetValue(Int_t i=0) const {return ((TBranchElement*)fBranch)->GetValue(i, fLen, kFALSE);}
virtual Double_t GetValueSubArray(Int_t i=0, Int_t j=0) const {return ((TBranchElement*)fBranch)->GetValue(i, j, kTRUE);}
virtual void *GetValuePointer() const { return ((TBranchElement*)fBranch)->GetValuePointer(); }
virtual Bool_t IsOnTerminalBranch() const;
virtual void PrintValue(Int_t i=0) const {((TBranchElement*)fBranch)->PrintValue(i);}
virtual void SetLeafCount(TLeaf *leaf) {fLeafCount = leaf;}
ClassDef(TLeafElement,1); //A TLeaf for a general object derived from TObject.
};
#endif
|