ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/common.py
Revision: 1.61
Committed: Mon Mar 19 12:38:09 2012 UTC (13 years, 1 month ago) by spiga
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_2_8_1
Changes since 1.60: +1 -1 lines
Log Message:
2.8.1

File Contents

# User Rev Content
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 spiga 1.61 prog_version = (2, 8, 1)
16 nsmirnov 1.1 prog_version_str=`prog_version[0]`+'.'+`prog_version[1]`+'.'+`prog_version[2]`
17     prog_authors = [
18 slacapra 1.23 ['Stefano Lacaprara', 'Stefano.Lacaprara@pd.infn.it', 'INFN/LNL'],
19 spiga 1.50 ['Daniele Spiga', 'Daniele.Spiga@pg.infn.it', 'CERN'],
20 fanzago 1.28 ['Mattia Cinquilli', 'Mattia.Cinquilli@cern.ch', 'INFN/Perugia'],
21     ['Alessandra Fanfani', 'Alessandra.Fanfani@bo.infn.it', 'INFN/Bologna'],
22 spiga 1.50 ['Federica Fanzago', 'Federica.Fanzago@cern.ch' , 'INFN/Padova'],
23 fanzago 1.28 ['Fabio Farina', 'fabio.farina@cern.ch', 'INFN/Milano Bicocca'],
24     ['Eric Vaandering', 'ewv@fnal.gov', 'FNAL'],
25 spiga 1.50 ['Filippo Spiga', 'filippo.spiga@disco.unimib.it', 'INFN/Milano Bicocca'],
26     ['Hassen Riahi', 'hassen.riahi@pg.infn.it', 'INFN/Perugia']
27 nsmirnov 1.1 ]
28    
29     ###########################################################################
30     #
31     # Objects accessible from almost any place of the program.
32     #
33     ###########################################################################
34    
35     logger = None
36     work_space = None
37     scheduler = None
38 nsmirnov 1.2 job_list = []
39 nsmirnov 1.1 jobDB = None
40 slacapra 1.17 taskDB = None
41 slacapra 1.31 apmon = None