ROOT
6.10/09
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
v
w
x
y
z
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
net
net
inc
TGridJobStatusList.h
Go to the documentation of this file.
1
// @(#)root/net:$Id$
2
// Author: Andreas-Joachim Peters 10/12/2006
3
4
/*************************************************************************
5
* Copyright (C) 1995-2006, 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
#ifndef ROOT_TGridJobStatusList
13
#define ROOT_TGridJobStatusList
14
15
//////////////////////////////////////////////////////////////////////////
16
// //
17
// TGridJobStatusList //
18
// //
19
// Abstract base class defining a list of GRID job status //
20
// //
21
//////////////////////////////////////////////////////////////////////////
22
23
#include "
TList.h
"
24
25
#include "
TGridJob.h
"
26
27
28
class
TGridJob
;
29
30
class
TGridJobStatusList
:
public
TList
{
31
32
protected
:
33
TString
fJobID
;
// the job's ID
34
35
public
:
36
TGridJobStatusList
() : fJobID(
""
) { }
37
virtual
~TGridJobStatusList
() { }
38
39
ClassDef
(
TGridJobStatusList
,1)
// ABC defining interface to a list of GRID jobs
40
};
41
42
R__EXTERN
TGridJobStatusList
*
gGridJobStatusList
;
43
44
#endif
TString
Basic string class.
Definition:
TString.h:129
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:297
TList.h
TGridJobStatusList
Definition:
TGridJobStatusList.h:30
TGridJobStatusList::~TGridJobStatusList
virtual ~TGridJobStatusList()
Definition:
TGridJobStatusList.h:37
TList
A doubly linked list.
Definition:
TList.h:43
TGridJobStatusList::fJobID
TString fJobID
Definition:
TGridJobStatusList.h:33
TGridJobStatusList::TGridJobStatusList
TGridJobStatusList()
Definition:
TGridJobStatusList.h:36
R__EXTERN
#define R__EXTERN
Definition:
DllImport.h:27
TGridJob
Definition:
TGridJob.h:31
gGridJobStatusList
R__EXTERN TGridJobStatusList * gGridJobStatusList
Definition:
TGridJobStatusList.h:42
TGridJob.h