#ifndef ROOT_TProofPlayerLite
#define ROOT_TProofPlayerLite
#ifndef ROOT_TProofPlayer
#include "TProofPlayer.h"
#endif
class TProofPlayerLite : public TProofPlayerRemote {
protected:
Bool_t HandleTimer(TTimer *timer);
Int_t MakeSelector(const char *selfile);
void SetupFeedback();
public:
TProofPlayerLite(TProof *proof = 0) : TProofPlayerRemote(proof) { }
virtual ~TProofPlayerLite() { }
Long64_t Process(TDSet *set, const char *selector,
Option_t *option = "", Long64_t nentries = -1,
Long64_t firstentry = 0);
Long64_t Process(TDSet *set, TSelector *selector,
Option_t *option = "", Long64_t nentries = -1,
Long64_t firstentry = 0);
Long64_t Finalize(Bool_t force = kFALSE, Bool_t sync = kFALSE);
Long64_t Finalize(TQueryResult *qr)
{ return TProofPlayerRemote::Finalize(qr); }
void StoreFeedback(TObject *slave, TList *out);
ClassDef(TProofPlayerLite,0)
};
#endif