#ifndef ROOT_TProofBenchRun
#define ROOT_TProofBenchRun
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TProofBenchTypes
#include "TProofBenchTypes.h"
#endif
class TProof;
class TProofBenchRun : public TObject {
private:
protected:
TProof* fProof;
TString fSelName;
TString fParList;
public:
TProofBenchRun(TProof *proof = 0, const char *sel = 0);
virtual ~TProofBenchRun();
virtual const char *GetSelName() { return fSelName; }
virtual const char *GetParList() { return fParList; }
virtual void SetSelName(const char *sel) { fSelName = sel; }
virtual void SetParList(const char *pars) { fParList = pars; }
virtual void Run(Long64_t nevents, Int_t start = -1, Int_t stop = -1,
Int_t step = -1, Int_t ntries = -1, Int_t debug = -1,
Int_t draw = -1) = 0;
virtual void Run(const char *dset, Int_t start = -1, Int_t stop = -1,
Int_t step = -1, Int_t ntries = -1, Int_t debug = -1,
Int_t draw = -1) = 0;
virtual void Print(Option_t *option = "") const=0;
ClassDef(TProofBenchRun, 0)
};
#endif