1 |
nsmirnov |
1.1 |
#
|
2 |
|
|
# This class is a collection of unrelated objects which should be
|
3 |
|
|
# accessible from almost any place of the program.
|
4 |
|
|
# The possible design alternative is to implement these objects
|
5 |
|
|
# as singletons.
|
6 |
|
|
#
|
7 |
|
|
|
8 |
|
|
###########################################################################
|
9 |
|
|
#
|
10 |
|
|
# General information about the program
|
11 |
|
|
#
|
12 |
|
|
###########################################################################
|
13 |
|
|
|
14 |
|
|
prog_name = 'crab'
|
15 |
slacapra |
1.18 |
prog_version = (1, 4, 0)
|
16 |
nsmirnov |
1.1 |
prog_version_str=`prog_version[0]`+'.'+`prog_version[1]`+'.'+`prog_version[2]`
|
17 |
|
|
prog_authors = [
|
18 |
slacapra |
1.5 |
['Stefano Lacaprara', 'Stefano.Lacaprara@pd.infn.it', 'INFN/Padova'],
|
19 |
nsmirnov |
1.1 |
['Federica Fanzago' , 'Federica.Fanzago@pd.infn.it' , 'INFN/Padova'],
|
20 |
slacapra |
1.4 |
['Daniele Spiga' , 'Daniele.Spiga@pg.infn.it' , 'INFN/Perugia'],
|
21 |
|
|
['Alessandra Fanfani' , 'Alessandra.Fanfani@bo.infn.it' , 'INFN/Bologna'],
|
22 |
slacapra |
1.5 |
['Marco Corvo' , 'Marco.Corvo@pd.infn.it' , 'INFN/Padova'],
|
23 |
slacapra |
1.14 |
['Oliver Gutsche' , 'Oliver.Gutsche@fnal.gov' , 'FNAL'],
|
24 |
nsmirnov |
1.1 |
['Nikolai Smirnov' , 'Nikolai.Smirnov@pd.infn.it' , 'INFN/Padova'],
|
25 |
|
|
]
|
26 |
|
|
|
27 |
|
|
###########################################################################
|
28 |
|
|
#
|
29 |
|
|
# Objects accessible from almost any place of the program.
|
30 |
|
|
#
|
31 |
|
|
###########################################################################
|
32 |
|
|
|
33 |
|
|
logger = None
|
34 |
|
|
work_space = None
|
35 |
|
|
scheduler = None
|
36 |
nsmirnov |
1.2 |
job_list = []
|
37 |
nsmirnov |
1.1 |
jobDB = None
|
38 |
slacapra |
1.17 |
taskDB = None
|