ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/common.py
Revision: 1.70
Committed: Mon Sep 16 20:08:39 2013 UTC (11 years, 7 months ago) by belforte
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_2_9_1, HEAD
Changes since 1.69: +1 -1 lines
Log Message:
version 2_9_1

File Contents

# Content
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 prog_version = (2, 9, 1)
16 prog_version_str=`prog_version[0]`+'.'+`prog_version[1]`+'.'+`prog_version[2]`
17 prog_authors = [
18 ['Stefano Lacaprara', 'Stefano.Lacaprara@pd.infn.it', 'INFN/LNL'],
19 ['Daniele Spiga', 'Daniele.Spiga@pg.infn.it', 'CERN'],
20 ['Mattia Cinquilli', 'Mattia.Cinquilli@cern.ch', 'INFN/Perugia'],
21 ['Alessandra Fanfani', 'Alessandra.Fanfani@bo.infn.it', 'INFN/Bologna'],
22 ['Federica Fanzago', 'Federica.Fanzago@cern.ch' , 'INFN/Padova'],
23 ['Fabio Farina', 'fabio.farina@cern.ch', 'INFN/Milano Bicocca'],
24 ['Eric Vaandering', 'ewv@fnal.gov', 'FNAL'],
25 ['Filippo Spiga', 'filippo.spiga@disco.unimib.it', 'INFN/Milano Bicocca'],
26 ['Hassen Riahi', 'hassen.riahi@pg.infn.it', 'INFN/Perugia']
27 ]
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 job_list = []
39 jobDB = None
40 taskDB = None
41 apmon = None