// @(#)root/tree // Author: Rene Brun 11/02/96 /************************************************************************* * 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_TBranchClones #define ROOT_TBranchClones ////////////////////////////////////////////////////////////////////////// // // // TBranchClones // // // // A Branch for the case of an array of clone objects. // ////////////////////////////////////////////////////////////////////////// #include "TBranch.h" class TClonesArray; class TTreeCloner; class TBranchClones : public TBranch { protected: TClonesArray *fList; ///SetTree(tree); } virtual void UpdateFile(); private: ClassDef(TBranchClones,2); //Branch in case of an array of clone objects }; #endif