[cleanup] removed redundancy
This commit is contained in:
parent
e3e420a94b
commit
4896c1e1d8
@ -221,7 +221,7 @@ class AICPicker(AutoPicker):
|
|||||||
# get noise window
|
# get noise window
|
||||||
inoise = getnoisewin(self.Tcf, self.Pick, self.TSNR[0], self.TSNR[1])
|
inoise = getnoisewin(self.Tcf, self.Pick, self.TSNR[0], self.TSNR[1])
|
||||||
# check, if these are counts or m/s, important for slope estimation!
|
# check, if these are counts or m/s, important for slope estimation!
|
||||||
# this is quick and dirty, better solution?
|
# this is quick and dirty, better solution? #Todo wtf
|
||||||
if max(self.Data[0].data < 1e-3) and max(self.Data[0].data >= 1e-6):
|
if max(self.Data[0].data < 1e-3) and max(self.Data[0].data >= 1e-6):
|
||||||
self.Data[0].data = self.Data[0].data * 1000000.
|
self.Data[0].data = self.Data[0].data * 1000000.
|
||||||
elif max(self.Data[0].data < 1e-6):
|
elif max(self.Data[0].data < 1e-6):
|
||||||
@ -351,13 +351,9 @@ class AICPicker(AutoPicker):
|
|||||||
ax2.set_ylabel('Counts')
|
ax2.set_ylabel('Counts')
|
||||||
ax2.set_yticks([])
|
ax2.set_yticks([])
|
||||||
ax2.legend(loc=1)
|
ax2.legend(loc=1)
|
||||||
if plt_flag == 1:
|
|
||||||
fig.show()
|
|
||||||
try: input()
|
|
||||||
except SyntaxError: pass
|
|
||||||
plt.close(fig)
|
|
||||||
else:
|
else:
|
||||||
ax1.set_title(self.Data[0].stats.station)
|
ax1.set_title(self.Data[0].stats.station)
|
||||||
|
|
||||||
if plt_flag == 1:
|
if plt_flag == 1:
|
||||||
fig.show()
|
fig.show()
|
||||||
try: input()
|
try: input()
|
||||||
|
Loading…
Reference in New Issue
Block a user