// @(#)root/tree:$Id$ // Author: Rene Brun 11/02/97 /************************************************************************* * 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_TEventList #define ROOT_TEventList ////////////////////////////////////////////////////////////////////////// // // // TEventList // // // // A list of selected entries in a TTree. // // // ////////////////////////////////////////////////////////////////////////// #include "TNamed.h" class TDirectory; class TCollection; class TEventList : public TNamed { protected: Int_t fN; ///< Number of elements in the list Int_t fSize; ///< Size of array Int_t fDelta; ///< Increment size Bool_t fReapply; ///< If true, TTree::Draw will 'reapply' the original cut Long64_t *fList; ///<[fN]Array of elements TDirectory *fDirectory; ///