13 |
|
### FEDE added modify_report FOR DBS OUTPUT PUBLICATION |
14 |
|
self.actions = { |
15 |
|
'title' : self.title_, |
16 |
+ |
'untar_software' : self.untarSoftware_, |
17 |
|
'setup_scheduler_environment' : self.setupSchedulerEnvironment_, |
18 |
|
'setup_jobtype_environment' : self.setupJobTypeEnvironment_, |
19 |
|
'copy_input' : self.copyInput_, |
88 |
|
txt = '# This script was generated by '+common.prog_name |
89 |
|
txt += ' (version '+common.prog_version_str+').\n' |
90 |
|
return txt |
91 |
+ |
|
92 |
+ |
|
93 |
+ |
### FEDE ### |
94 |
+ |
|
95 |
+ |
def untarSoftware_(self): |
96 |
+ |
""" |
97 |
+ |
Returns part of a job script which untar CMSSW software. |
98 |
+ |
""" |
99 |
+ |
jbt = common.job_list.type() |
100 |
+ |
|
101 |
+ |
txt = jbt.wsUntarSoftware(self.nj) |
102 |
+ |
|
103 |
+ |
#txt += 'executable='+exe+'\n' |
104 |
+ |
return txt |
105 |
+ |
|
106 |
+ |
########################################### |
107 |
|
|
108 |
|
def setupSchedulerEnvironment_(self): |
109 |
|
""" |