// @(#)root/base:$Id: TBranchProxyDirector.h 20882 2007-11-19 11:31:26Z rdm $ // 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 #ifdef R__OLDHPACC namespace std { using ::list; } #endif namespace ROOT { class TBranchProxy; class TFriendProxy; class TBranchProxyDirector { //This class could actually be the selector itself. TTree *fTree; Long64_t fEntry; std::list fDirected; std::list fFriends; public: TBranchProxyDirector(TTree* tree, Long64_t i); TBranchProxyDirector(TTree* tree, Int_t i); // cint has (had?) a problem casting int to long long TBranchProxyDirector(const TBranchProxyDirector &) {;} TBranchProxyDirector& operator=(const TBranchProxyDirector&) {return *this;} void Attach(TBranchProxy* p); void Attach(TFriendProxy* f); Long64_t GetReadEntry() const; TTree* GetTree() const; // void Print(); void SetReadEntry(Long64_t entry); TTree* SetTree(TTree *newtree); }; } /* namespace ROOT */ #endif