// @(#)root/base:$Name: $:$Id: TBranchProxyDirector.h,v 1.2 2004/06/25 22:45:41 rdm Exp $ // Author: Philippe Canal 13/05/2003 /************************************************************************* * Copyright (C) 1995-2004, Rene Brun, Fons Rademakers and al. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TBranchProxyDirector #define ROOT_TBranchProxyDirector #ifndef ROOT_TTree #include "TTree.h" #endif #include namespace ROOT { class TBranchProxy; class TBranchProxyDirector { //This class could actually be the selector itself. TTree *fTree; Long64_t fEntry; std::list fDirected; public: TBranchProxyDirector(TTree* tree, Long64_t i); TBranchProxyDirector(TTree* tree, Int_t i); // cint has (had?) a problem casting int to long long void Attach(TBranchProxy* p); Long64_t GetReadEntry() const; TTree* GetTree() const; // void Print(); void SetReadEntry(Long64_t entry); TTree* SetTree(TTree *newtree); }; } /* namespace ROOT */ #endif