#ifndef ROOT_TGridJob
#define ROOT_TGridJob
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
class TGridJobStatus;
class TGridJob : public TObject {
protected:
TString fJobID;
public:
TGridJob(TString jobID) : fJobID(jobID) { }
virtual ~TGridJob() { }
virtual TString GetJobID() { return fJobID; }
virtual TGridJobStatus *GetJobStatus() const = 0;
virtual Int_t GetOutputSandbox(const char *localpath, Option_t *opt = 0);
virtual Bool_t Resubmit() = 0;
virtual Bool_t Cancel () = 0;
ClassDef(TGridJob,1)
};
#endif
Last change: Wed Jun 25 08:46:17 2008
Last generated: 2008-06-25 08:46
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.