ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/SchedulerGlitecoll.py
Revision: 1.2
Committed: Mon Jun 25 14:22:33 2007 UTC (17 years, 10 months ago) by spiga
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_1_5_4_SLC3, CRAB_1_5_4_SLC3_pre4, CRAB_2_0_2_pre1, CRAB_1_5_4_SLC3_pre3, CRAB_2_0_1, CRAB_1_5_4_SLC3_pre2, CRAB_2_0_1_pre1, CRAB_1_5_4_SLC3_pre1, CRAB_2_0_0, CRAB_2_0_0_pre10, CRAB_2_0_0_pre9, CRAB_1_5_4, CRAB_1_5_4_pre2, CRAB_1_5_4_pre1, CRAB_2_0_0_pre7, CRAB_2_0_0_pre6, CRAB_1_5_3, CRAB_1_5_3_pre5, CRAB_1_5_3_pre4, CRAB_2_0_0_pre5, CRAB_1_5_3_pre3, configure, CRAB_2_0_0_pre4, CRAB_1_5_3_pre2
Branch point for: CRAB_1_5_4_SLC3_pre4_br, CRAB_1_5_4_SLC3_start
Changes since 1.1: +5 -0 lines
Log Message:
added def submitTout which retoun the timeout value

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     SchedulerGlite.__init__(self)
7 spiga 1.2
8     def submitTout(self, list):
9     return len(list[1])*20
10    
11