##// END OF EJS Templates
jroplot_voltage: saving every profile
Miguel Valdez -
r774:3fb81731d7d7
parent child
Show More
@@ -172,6 +172,16 class Scope(Figure):
172 ymax)
172 ymax)
173
173
174 self.draw()
174 self.draw()
175
176 str_datetime = thisDatetime.strftime("%Y%m%d_%H%M%S")
177 figfile = self.getFilename(name = str_datetime) + "_" + str(i)
178
179 self.save(figpath=figpath,
180 figfile=figfile,
181 save=save,
182 ftp=ftp,
183 wr_period=wr_period,
184 thisDatetime=thisDatetime)
175
185
176 else:
186 else:
177 wintitle += " [Profile = %d] " %dataOut.profileIndex
187 wintitle += " [Profile = %d] " %dataOut.profileIndex
@@ -203,7 +213,10 class Scope(Figure):
203 ymax)
213 ymax)
204
214
205 self.draw()
215 self.draw()
206
216
217 str_datetime = thisDatetime.strftime("%Y%m%d_%H%M%S") + "_" + str(dataOut.profileIndex)
218 figfile = self.getFilename(name = str_datetime)
219
207 self.save(figpath=figpath,
220 self.save(figpath=figpath,
208 figfile=figfile,
221 figfile=figfile,
209 save=save,
222 save=save,
General Comments 0
You need to be logged in to leave comments. Login now