Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TTreeIndex.h
Go to the documentation of this file.
1// @(#)root/treeplayer:$Id$
2// Author: Rene Brun 05/07/2004
3
4/*************************************************************************
5 * Copyright (C) 1995-2004, 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_TTreeIndex
13#define ROOT_TTreeIndex
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TTreeIndex //
19// //
20// A Tree Index with majorname and minorname. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24
25#include "TVirtualIndex.h"
26
27class TTreeFormula;
28
29class TTreeIndex : public TVirtualIndex {
30
31protected:
32 TString fMajorName; // Index major name
33 TString fMinorName; // Index minor name
34 Long64_t fN; // Number of entries
35 Long64_t *fIndexValues; //[fN] Sorted index values, higher 64bits
36 Long64_t *fIndexValuesMinor; //[fN] Sorted index values, lower 64bits
37 Long64_t *fIndex; //[fN] Index of sorted values
38 TTreeFormula *fMajorFormula; //! Pointer to major TreeFormula
39 TTreeFormula *fMinorFormula; //! Pointer to minor TreeFormula
40 TTreeFormula *fMajorFormulaParent; //! Pointer to major TreeFormula in Parent tree (if any)
41 TTreeFormula *fMinorFormulaParent; //! Pointer to minor TreeFormula in Parent tree (if any)
42
45
46private:
47 TTreeIndex(const TTreeIndex&) = delete; // Not implemented.
48 TTreeIndex &operator=(const TTreeIndex&) = delete; // Not implemented.
49
50public:
51 TTreeIndex();
52 TTreeIndex(const TTree *T, const char *majorname, const char *minorname);
53 virtual ~TTreeIndex();
54 virtual void Append(const TVirtualIndex *,Bool_t delaySort = kFALSE);
55 bool ConvertOldToNew();
56 Long64_t FindValues(Long64_t major, Long64_t minor) const;
57 virtual Long64_t GetEntryNumberFriend(const TTree *parent);
58 virtual Long64_t GetEntryNumberWithIndex(Long64_t major, Long64_t minor) const;
59 virtual Long64_t GetEntryNumberWithBestIndex(Long64_t major, Long64_t minor) const;
60 virtual Long64_t *GetIndex() const {return fIndex;}
61 virtual Long64_t *GetIndexValues() const {return fIndexValues;}
62 virtual Long64_t *GetIndexValuesMinor() const;
63 const char *GetMajorName() const {return fMajorName.Data();}
64 const char *GetMinorName() const {return fMinorName.Data();}
65 virtual Long64_t GetN() const {return fN;}
68 virtual Bool_t IsValidFor(const TTree *parent);
69 virtual void Print(Option_t *option="") const;
70 virtual void UpdateFormulaLeaves(const TTree *parent);
71 virtual void SetTree(const TTree *T);
72
73 ClassDef(TTreeIndex,2); //A Tree Index with majorname and minorname.
74};
75
76#endif
77
const Bool_t kFALSE
Definition RtypesCore.h:92
bool Bool_t
Definition RtypesCore.h:63
long long Long64_t
Definition RtypesCore.h:73
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:325
Basic string class.
Definition TString.h:136
const char * Data() const
Definition TString.h:369
Used to pass a selection expression to the Tree drawing routine.
A Tree Index with majorname and minorname.
Definition TTreeIndex.h:29
TTreeIndex()
Default constructor for TTreeIndex.
virtual Long64_t * GetIndexValues() const
Definition TTreeIndex.h:61
virtual Long64_t * GetIndexValuesMinor() const
TTreeFormula * fMajorFormula
Definition TTreeIndex.h:38
TTreeFormula * fMajorFormulaParent
Pointer to minor TreeFormula.
Definition TTreeIndex.h:40
Long64_t * fIndex
Definition TTreeIndex.h:37
TTreeFormula * GetMajorFormulaParent(const TTree *parent)
Pointer to minor TreeFormula in Parent tree (if any)
virtual ~TTreeIndex()
Destructor.
virtual Long64_t GetN() const
Definition TTreeIndex.h:65
Long64_t fN
Definition TTreeIndex.h:34
virtual Long64_t * GetIndex() const
Definition TTreeIndex.h:60
const char * GetMinorName() const
Definition TTreeIndex.h:64
bool ConvertOldToNew()
conversion from old 64bit indexes return true if index was converted
TTreeFormula * fMinorFormula
Pointer to major TreeFormula.
Definition TTreeIndex.h:39
virtual Bool_t IsValidFor(const TTree *parent)
Return kTRUE if index can be applied to the TTree.
virtual TTreeFormula * GetMajorFormula()
Return a pointer to the TreeFormula corresponding to the majorname.
virtual Long64_t GetEntryNumberWithBestIndex(Long64_t major, Long64_t minor) const
Return entry number corresponding to major and minor number.
virtual void Print(Option_t *option="") const
Print the table with : serial number, majorname, minorname.
TTreeFormula * GetMinorFormulaParent(const TTree *parent)
Return a pointer to the TreeFormula corresponding to the minorname in parent tree.
TString fMinorName
Definition TTreeIndex.h:33
virtual TTreeFormula * GetMinorFormula()
Return a pointer to the TreeFormula corresponding to the minorname.
TTreeIndex(const TTreeIndex &)=delete
virtual void Append(const TVirtualIndex *, Bool_t delaySort=kFALSE)
Append 'add' to this index.
Long64_t * fIndexValues
Definition TTreeIndex.h:35
const char * GetMajorName() const
Definition TTreeIndex.h:63
virtual Long64_t GetEntryNumberWithIndex(Long64_t major, Long64_t minor) const
Return entry number corresponding to major and minor number.
TString fMajorName
Definition TTreeIndex.h:32
Long64_t * fIndexValuesMinor
Definition TTreeIndex.h:36
TTreeIndex & operator=(const TTreeIndex &)=delete
TTreeFormula * fMinorFormulaParent
Pointer to major TreeFormula in Parent tree (if any)
Definition TTreeIndex.h:41
Long64_t FindValues(Long64_t major, Long64_t minor) const
find position where major|minor values are in the IndexValues tables this is the index in IndexValues...
virtual void SetTree(const TTree *T)
this function is called by TChain::LoadTree and TTreePlayer::UpdateFormulaLeaves when a new Tree is l...
virtual Long64_t GetEntryNumberFriend(const TTree *parent)
Returns the entry number in this (friend) Tree corresponding to entry in the master Tree 'parent'.
virtual void UpdateFormulaLeaves(const TTree *parent)
Called by TChain::LoadTree when the parent chain changes it's tree.
A TTree represents a columnar dataset.
Definition TTree.h:79
Abstract interface for Tree Index.