ROOT
6.08/07
Reference Guide
net
glite
inc
TGLiteJobStatus.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 TGLiteJobStatus.h
14
gLite implementation of TGridJobStatus*/
/*
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_TGLiteJobStatus
25
#define ROOT_TGLiteJobStatus
26
27
#ifndef ROOT_TGridJobStatus
28
#include "
TGridJobStatus.h
"
29
#endif
30
31
#ifndef ROOT_TGridJob
32
#include "
TGridJob.h
"
33
#endif
34
35
class
TGLiteJobStatus
:
public
TGridJobStatus
36
{
37
public
:
38
TGLiteJobStatus
() {}
39
TGLiteJobStatus
(
TString
jobID);
40
virtual
~TGLiteJobStatus
() {}
41
42
public
:
43
virtual
EGridJobStatus
GetStatus
()
const
;
44
45
private
:
46
std::string
m_sJobID
;
47
48
ClassDef
(
TGLiteJobStatus
, 1)
// gLite implementation of TGridJobStatus
49
};
50
51
#endif
TGLiteJobStatus::m_sJobID
std::string m_sJobID
Definition:
TGLiteJobStatus.h:46
TGLiteJobStatus::GetStatus
virtual EGridJobStatus GetStatus() const
The GetStat() method retrieves a gLite job status and translates it to a TGridJobStatus::EGridJobStat...
Definition:
TGLiteJobStatus.cxx:62
TString
Basic string class.
Definition:
TString.h:137
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:254
TGLiteJobStatus::~TGLiteJobStatus
virtual ~TGLiteJobStatus()
Definition:
TGLiteJobStatus.h:40
TGridJobStatus::EGridJobStatus
EGridJobStatus
Definition:
TGridJobStatus.h:32
TGridJobStatus.h
TGLiteJobStatus::TGLiteJobStatus
TGLiteJobStatus()
Definition:
TGLiteJobStatus.h:38
TGLiteJobStatus
Definition:
TGLiteJobStatus.h:35
TGridJobStatus
Definition:
TGridJobStatus.h:28
TGridJob.h