File tree 5 files changed +12
-4
lines changed
5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 9
9
import subprocess
10
10
from random import shuffle
11
11
import sys
12
- from simjob .scripts import *
12
+ # from simjob.scripts import *
13
13
import time
14
- from simjob import JobCollection
14
+ #from simjob import JobCollection
15
+
16
+ from simprod import *
15
17
16
18
basedir = os .getenv ("SIMOUTPUT" )
17
19
if basedir is None :
56
58
57
59
opts ["basedir" ] = basedir
58
60
59
- Jobs = JobCollection ( ** opts )
61
+ Jobs = SimulationJob ( ** opts )
60
62
61
63
Jobs .prepare ()
62
64
Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ Description of simulation setups can be found [here](https://github.com/marinang
38
38
<img width =" 750 " height =" 300 " src =" https://github.com/marinang/SimulationProduction/blob/userinterface/etc/submission.png " >
39
39
</p >
40
40
41
+ You can also launch a job by doing:
42
+
43
+ ` $ simprod --evttype EVTTYPE --year YEAR --nevents NEVENTS `
41
44
42
45
### Options
43
46
Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ description-file = README.md
Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ def run(self):
171
171
url = 'https://github.com/marinang/SimulationProduction' ,
172
172
install_requires = install_list ,
173
173
dependency_links = dependency ,
174
+ license = 'GPL-3.0' ,
174
175
classifiers = [
175
176
'Programming Language :: Python :: 2.7' ,
176
177
'Programming Language :: Python :: 3.4' ,
Original file line number Diff line number Diff line change 77
77
78
78
opts = vars (opts ).copy ()
79
79
opts ["basedir" ] = simoutput
80
- Jobs = JobCollection ( ** opts )
80
+ Jobs = SimulationJob ( ** opts )
81
81
Jobs .prepare ()
82
82
Jobs .send ()
83
83
You can’t perform that action at this time.
0 commit comments