#ifndef ROOT__TSelectorEntries
#define ROOT__TSelectorEntries
#include <TSelector.h>
class TTree;
class TTreeFormula;
class TSelectorEntries : public TSelector {
public :
   TTree          *fChain;          
   TTreeFormula   *fSelect;         
   Long64_t        fSelectedRows;   
   Bool_t          fSelectMultiple; 
   TSelectorEntries(TTree *tree = 0, const char *selection = 0);
   TSelectorEntries(const char *selection);
   virtual ~TSelectorEntries();
   virtual Int_t    Version() const { return 2; }
   virtual void     Begin(TTree *tree);
   virtual void     SlaveBegin(TTree *tree);
   virtual void     Init(TTree *tree);
   virtual Bool_t   Notify();
   virtual Bool_t   Process(Long64_t entry);
   virtual Int_t    GetEntry(Long64_t entry, Int_t getall = 0);
   virtual Long64_t GetSelectedRows() const { return fSelectedRows; }
   virtual void     SetOption(const char *option) { fOption = option; }
   virtual void     SetObject(TObject *obj) { fObject = obj; }
   virtual void     SetSelection(const char *selection);
   virtual TList   *GetOutputList() const { return fOutput; }
   virtual void     SlaveTerminate();
   virtual void     Terminate();
   ClassDef(TSelectorEntries,1); 
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.