ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/common.py
Revision: 1.3
Committed: Wed Jul 20 10:03:22 2005 UTC (19 years, 9 months ago) by slacapra
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_1_0_0_pre1
Changes since 1.2: +1 -1 lines
Log Message:
too many changes to list them here...

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 slacapra 1.3 prog_version = (0, 4, 0)
16 nsmirnov 1.1 prog_version_str=`prog_version[0]`+'.'+`prog_version[1]`+'.'+`prog_version[2]`
17     prog_authors = [
18     ['Federica Fanzago' , 'Federica.Fanzago@pd.infn.it' , 'INFN/Padova'],
19     ['Marco Corvo' , 'Marco.Corvo@pd.infn.it' , 'INFN/Padova'],
20     ['Stefano Lacaprara', 'Stefano.Lacaprara@pd.infn.it', 'INFN/Padova'],
21     ['Nikolai Smirnov' , 'Nikolai.Smirnov@pd.infn.it' , 'INFN/Padova'],
22     ]
23    
24     ###########################################################################
25     #
26     # Objects accessible from almost any place of the program.
27     #
28     ###########################################################################
29    
30     logger = None
31     work_space = None
32     scheduler = None
33 nsmirnov 1.2 job_list = []
34 nsmirnov 1.1 jobDB = None
35    
36     # TODO: very bad place for this variable
37     analisys_common_info = {}