ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/Submitter.py
Revision: 1.1
Committed: Thu Mar 10 16:20:30 2005 UTC (20 years, 1 month ago) by nsmirnov
Content type: text/x-python
Branch: MAIN
Log Message:
initial set of files

File Contents

# User Rev Content
1 nsmirnov 1.1 from Actor import *
2    
3     class Submitter(Actor):
4     def __init__(self, cfg_params, nsjobs):
5     self.cfg_params = cfg_params
6     self.njobs = nsjobs
7     return
8    
9     def run(self):
10     print "I am submitting %d jobs" % self.njobs
11     return
12