15 |
|
'title' : self.title_, |
16 |
|
'setup_scheduler_environment' : self.setupSchedulerEnvironment_, |
17 |
|
'setup_jobtype_environment' : self.setupJobTypeEnvironment_, |
18 |
+ |
'copy_input' : self.copyInput_, |
19 |
|
'build_executable' : self.buildExe_, |
20 |
|
'run_executable' : self.runExe_, |
21 |
|
'rename_output' : self.renameOutput_, |
118 |
|
txt += jbt.wsRenameOutput(self.nj) |
119 |
|
return txt |
120 |
|
|
121 |
< |
#### FEDE |
121 |
> |
def copyInput_(self): |
122 |
> |
""" |
123 |
> |
Returns part of a job script which copies input files from SE. |
124 |
> |
""" |
125 |
> |
txt = common.scheduler.wsCopyInput() |
126 |
> |
return txt |
127 |
> |
|
128 |
|
def copyOutput_(self): |
129 |
|
""" |
130 |
|
Returns part of a job script which copies output files to SE. |