ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/common.py
Revision: 1.50
Committed: Thu Nov 19 15:55:29 2009 UTC (15 years, 5 months ago) by spiga
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_2_7_1, fede_170310, CRAB_2_7_1_pre12, CRAB_2_7_1_pre11, CRAB_2_7_1_pre10, CRAB_2_7_1_pre9, CRAB_LumiMask, CRAB_2_7_lumi, from_LimiMask, CRAB_2_7_1_pre8, CRAB_2_7_1_pre6, CRAB_2_7_1_pre5, CRAB_2_7_1_wmbs_pre4, CRAB_2_7_1_pre4, CRAB_2_7_1_pre3, CRAB_2_7_1_pre2, CRAB_2_7_1_pre1
Branch point for: CRAB_multiout, CRAB_2_7_1_branch
Changes since 1.49: +5 -7 lines
Log Message:
271 and update author list

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, 7, 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