AICPicker: if iplot > 1, figure with waveform and CF is raised, even when slope is calculation failed.

This commit is contained in:
Ludger Küperkoch 2015-08-13 10:57:46 +02:00
parent 64b8e1a9e8
commit ceed663a77

View File

@ -223,6 +223,18 @@ class AICPicker(AutoPicking):
if imax == 0: if imax == 0:
print 'AICPicker: Maximum for slope determination right at the beginning of the window!' print 'AICPicker: Maximum for slope determination right at the beginning of the window!'
print 'Choose longer slope determination window!' print 'Choose longer slope determination window!'
if self.iplot > 1:
p = plt.figure(self.iplot)
x = self.Data[0].data
p1, = plt.plot(self.Tcf, x / max(x), 'k')
p2, = plt.plot(self.Tcf, aicsmooth / max(aicsmooth), 'r')
plt.legend([p1, p2], ['(HOS-/AR-) Data', 'Smoothed AIC-CF'])
plt.xlabel('Time [s] since %s' % self.Data[0].stats.starttime)
plt.yticks([])
plt.title(self.Data[0].stats.station)
plt.show()
raw_input()
plt.close(p)
return return
islope = islope[0][0 :imax] islope = islope[0][0 :imax]
dataslope = self.Data[0].data[islope] dataslope = self.Data[0].data[islope]