Logo ROOT   6.10/09
Reference Guide
TChainIndex.h
Go to the documentation of this file.
1 // @(#)root/treeplayer:$Id$
2 // Author: Marek Biskup 07/06/2005
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_TChainIndex
13 #define ROOT_TChainIndex
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 //
18 // TChainIndex
19 //
20 // A Chain Index with majorname and minorname.
21 // It uses tree indices of all the trees in the chain instead of building
22 // a new index.
23 // The index values from the first tree should be less then
24 // all the index values from the second tree, and so on.
25 // If a tree in the chain doesn't have an index the index will be created
26 // and kept inside this chain index.
27 //
28 //////////////////////////////////////////////////////////////////////////
29 
30 
31 #include "TVirtualIndex.h"
32 
33 #include <vector>
34 
35 class TTreeFormula;
36 class TTreeIndex;
37 class TChain;
38 
39 class TChainIndex : public TVirtualIndex {
40 
41 public:
43  // holds a description of indices of trees in the chain.
44  public:
47  fTreeIndex(0) {}
48 
49  typedef std::pair<Long64_t, Long64_t> IndexValPair_t;
50 
53  void SetMinMaxFrom(const TTreeIndex *index );
54 
55  Long64_t fMinIndexValue; // the minimum value of the index (upper bits)
56  Long64_t fMinIndexValMinor; // the minimum value of the index (lower bits)
57  Long64_t fMaxIndexValue; // the maximum value of the index (upper bits)
58  Long64_t fMaxIndexValMinor; // the maximum value of the index (lower bits)
59  TVirtualIndex* fTreeIndex; // the tree index in case it was created in the constructor,
60  // otherwise 0
61  };
62 protected:
63 
64  TString fMajorName; // Index major name
65  TString fMinorName; // Index minor name
66  TTreeFormula *fMajorFormulaParent; //! Pointer to major TreeFormula in Parent tree (if any)
67  TTreeFormula *fMinorFormulaParent; //! Pointer to minor TreeFormula in Parent tree (if any)
68  std::vector<TChainIndexEntry> fEntries; // descriptions of indices of trees in the chain.
69 
70  std::pair<TVirtualIndex*, Int_t> GetSubTreeIndex(Long64_t major, Long64_t minor) const;
71  void ReleaseSubTreeIndex(TVirtualIndex* index, Int_t treeNo) const;
72  void DeleteIndices();
73 
74 public:
75  TChainIndex();
76  TChainIndex(const TTree *T, const char *majorname, const char *minorname);
77  virtual ~TChainIndex();
78  virtual void Append(const TVirtualIndex *, Bool_t delaySort = kFALSE);
79  virtual Long64_t GetEntryNumberFriend(const TTree *parent);
80  virtual Long64_t GetEntryNumberWithIndex(Long64_t major, Long64_t minor) const;
81  virtual Long64_t GetEntryNumberWithBestIndex(Long64_t major, Long64_t minor) const;
82  const char *GetMajorName() const {return fMajorName.Data();}
83  const char *GetMinorName() const {return fMinorName.Data();}
84  virtual Long64_t GetN() const {return fEntries.size();}
85  virtual TTreeFormula *GetMajorFormulaParent(const TTree *parent);
86  virtual TTreeFormula *GetMinorFormulaParent(const TTree *parent);
87  virtual void UpdateFormulaLeaves(const TTree *parent);
88  virtual void SetTree(const TTree *T);
89 
90  ClassDef(TChainIndex,1) //A Tree Index with majorname and minorname.
91 };
92 
93 #endif
94 
TVirtualIndex * fTreeIndex
Definition: TChainIndex.h:59
long long Long64_t
Definition: RtypesCore.h:69
Abstract interface for Tree Index.
Definition: TVirtualIndex.h:29
virtual Long64_t GetEntryNumberFriend(const TTree *parent)
See TTreeIndex::GetEntryNumberFriend for description.
IndexValPair_t GetMaxIndexValPair() const
Definition: TChainIndex.h:52
double T(double x)
Definition: ChebyshevPol.h:34
std::pair< Long64_t, Long64_t > IndexValPair_t
Definition: TChainIndex.h:49
virtual ~TChainIndex()
The destructor.
Basic string class.
Definition: TString.h:129
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void SetTree(const TTree *T)
See TTreeIndex::SetTree.
IndexValPair_t GetMinIndexValPair() const
Definition: TChainIndex.h:51
void SetMinMaxFrom(const TTreeIndex *index)
Definition: TChainIndex.cxx:34
A Tree Index with majorname and minorname.
Definition: TTreeIndex.h:28
TString fMinorName
Definition: TChainIndex.h:65
virtual Long64_t GetEntryNumberWithBestIndex(Long64_t major, Long64_t minor) const
See TTreeIndex::GetEntryNumberWithBestIndex for details.
#define ClassDef(name, id)
Definition: Rtypes.h:297
const char * GetMajorName() const
Definition: TChainIndex.h:82
const char * GetMinorName() const
Definition: TChainIndex.h:83
Used to pass a selection expression to the Tree drawing routine.
Definition: TTreeFormula.h:58
virtual TTreeFormula * GetMinorFormulaParent(const TTree *parent)
Return a pointer to the TreeFormula corresponding to the minorname in parent tree T...
virtual void Append(const TVirtualIndex *, Bool_t delaySort=kFALSE)
Add an index to this chain.
std::vector< TChainIndexEntry > fEntries
Pointer to minor TreeFormula in Parent tree (if any)
Definition: TChainIndex.h:68
const Bool_t kFALSE
Definition: RtypesCore.h:92
TTreeFormula * fMajorFormulaParent
Definition: TChainIndex.h:66
void ReleaseSubTreeIndex(TVirtualIndex *index, Int_t treeNo) const
Releases the tree index got using GetSubTreeIndex.
virtual TTreeFormula * GetMajorFormulaParent(const TTree *parent)
Return a pointer to the TreeFormula corresponding to the majorname in parent tree T...
TChainIndex()
Default constructor for TChainIndex.
Definition: TChainIndex.cxx:47
void DeleteIndices()
Delete all the indices which were built by this object.
A chain is a collection of files containing TTree objects.
Definition: TChain.h:33
std::pair< TVirtualIndex *, Int_t > GetSubTreeIndex(Long64_t major, Long64_t minor) const
Returns a TVirtualIndex for a tree which holds the entry with the specified major and minor values an...
virtual void UpdateFormulaLeaves(const TTree *parent)
Updates the parent formulae.
TTreeFormula * fMinorFormulaParent
Pointer to major TreeFormula in Parent tree (if any)
Definition: TChainIndex.h:67
A TTree object has a header with a name and a title.
Definition: TTree.h:78
virtual Long64_t GetN() const
Definition: TChainIndex.h:84
TString fMajorName
Definition: TChainIndex.h:64
virtual Long64_t GetEntryNumberWithIndex(Long64_t major, Long64_t minor) const
Returns the entry number with given index values.
Holds a description of indices of trees in the chain.
Definition: TChainIndex.h:42
A Chain Index.
Definition: TChainIndex.h:39
const char * Data() const
Definition: TString.h:347