Revision: | 1.6 |
Committed: | Tue Apr 1 15:51:04 2008 UTC (17 years, 1 month ago) by spiga |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.5: | +0 -0 lines |
State: | FILE REMOVED |
Log Message: | Now two different scheduler for GliteColl and Glite are not more needed |
# | 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 |