Logo ROOT   6.07/09
Reference Guide
TGLiteJob.h
Go to the documentation of this file.
1 // @(#) root/glite:$Id$
2 // Author: Anar Manafov <A.Manafov@gsi.de> 2006-04-10
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 /************************************************************************/
13 /*! \file TGLiteJob.h
14 gLite implementation of TGridJob*//*
15 
16  version number: $LastChangedRevision: 1678 $
17  created by: Anar Manafov
18  2006-04-10
19  last changed by: $LastChangedBy: manafov $ $LastChangedDate: 2008-01-21 18:22:14 +0100 (Mon, 21 Jan 2008) $
20 
21  Copyright (c) 2006-2008 GSI GridTeam. All rights reserved.
22 *************************************************************************/
23 
24 #ifndef ROOT_TGLiteJob
25 #define ROOT_TGLiteJob
26 
27 #ifndef ROOT_TGridJob
28 #include "TGridJob.h"
29 #endif
30 
31 class TGLiteJob : public TGridJob
32 {
33 
34 public:
35  TGLiteJob(TString jobID) : TGridJob(jobID) {}
36  virtual ~TGLiteJob() {}
37 
38  virtual TGridJobStatus* GetJobStatus() const;
39  Int_t GetOutputSandbox(const char *_localpath, Option_t* /*opt*/ = 0);
40  virtual Bool_t Resubmit();
41  virtual Bool_t Cancel();
42 
43  ClassDef(TGLiteJob, 1) // gLite implementation of TGridJob
44 };
45 
46 #endif
virtual Bool_t Cancel()
The Cancel() method cancels a gLite job, which was assigned to the class.
Definition: TGLiteJob.cxx:107
const char Option_t
Definition: RtypesCore.h:62
Basic string class.
Definition: TString.h:137
int Int_t
Definition: RtypesCore.h:41
virtual ~TGLiteJob()
Definition: TGLiteJob.h:36
bool Bool_t
Definition: RtypesCore.h:59
Int_t GetOutputSandbox(const char *_localpath, Option_t *=0)
Retrieving the output sandbox files.
Definition: TGLiteJob.cxx:67
TGLiteJob(TString jobID)
Definition: TGLiteJob.h:35
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual Bool_t Resubmit()
Not implemented for RGLite.
Definition: TGLiteJob.cxx:95
virtual TGridJobStatus * GetJobStatus() const
The GetJobStatus() method queries the job for its status.
Definition: TGLiteJob.cxx:51