ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/SchedulerGlitecoll.py
Revision: 1.5
Committed: Tue Feb 12 15:48:53 2008 UTC (17 years, 2 months ago) by slacapra
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_2_1_2, CRAB_2_1_2_pre2, CRAB_2_1_2_pre1, CRAB_2_1_1, CRAB_2_1_1_pre3, CRAB_2_2_0_pre1, CRAB_2_1_1_pre1, CRAB_2_1_0, CRAB_2_1_0_pre6, CRAB_2_1_0_pre5
Branch point for: CRAB_2_1_2_br, CRAB_2_1_1_pre2
Changes since 1.4: +1 -1 lines
Log Message:
fix scheduler name in case of glitecoll plus cleanup

File Contents

# User Rev Content
1 slacapra 1.1 #from Scheduler import Scheduler
2     from SchedulerGlite import SchedulerGlite
3    
4     class SchedulerGlitecoll(SchedulerGlite):
5     def __init__(self):
6 slacapra 1.5 SchedulerGlite.__init__(self,"GLITECOLL")
7 spiga 1.2
8 mcinquil 1.4 def tOut(self, list):
9     if list != None:
10     return len(list[1])*60
11     else:
12     return 180
13 spiga 1.2