removed focmec parameter

This commit is contained in:
Marcel Paffrath 2017-05-17 14:52:50 +02:00
parent b97f79c31d
commit fa2b65ea3d
4 changed files with 1 additions and 12 deletions

View File

@ -1 +1 @@
55bc-dirty b97f-dirty

View File

@ -65,10 +65,6 @@ defaults = {'rootpath': {'type': str,
'tooltip': 'quality factor for P waves (Qp*f^a); list(Qp, a)', 'tooltip': 'quality factor for P waves (Qp*f^a); list(Qp, a)',
'value': (300., 0.8)}, 'value': (300., 0.8)},
'focmecin': {'type': str,
'tooltip': 'name of focmec input file containing derived polarities',
'value': 'AUTOFOCMEC_AIC_HOS4_ARH.in'},
'pstart': {'type': float, 'pstart': {'type': float,
'tooltip': 'start time [s] for calculating CF for P-picking', 'tooltip': 'start time [s] for calculating CF for P-picking',
'value': 15.0}, 'value': 15.0},
@ -298,8 +294,6 @@ settings_main={
'vp', 'vp',
'rho', 'rho',
'Qp'], 'Qp'],
'focmec':[
'focmecin'],
'pick':[ 'pick':[
'pstart', 'pstart',
'pstop', 'pstop',

View File

@ -137,7 +137,6 @@ class AutoPickParameter(object):
all_names += self.get_main_para_names()['dirs'] all_names += self.get_main_para_names()['dirs']
all_names += self.get_main_para_names()['nlloc'] all_names += self.get_main_para_names()['nlloc']
all_names += self.get_main_para_names()['smoment'] all_names += self.get_main_para_names()['smoment']
all_names += self.get_main_para_names()['focmec']
all_names += self.get_main_para_names()['pick'] all_names += self.get_main_para_names()['pick']
all_names += self.get_special_para_names()['z'] all_names += self.get_special_para_names()['z']
all_names += self.get_special_para_names()['h'] all_names += self.get_special_para_names()['h']
@ -229,8 +228,6 @@ class AutoPickParameter(object):
'NLLoc settings', seperator) 'NLLoc settings', seperator)
self.write_section(fid_out, self.get_main_para_names()['smoment'], self.write_section(fid_out, self.get_main_para_names()['smoment'],
'parameters for seismic moment estimation', seperator) 'parameters for seismic moment estimation', seperator)
self.write_section(fid_out, self.get_main_para_names()['focmec'],
'focal mechanism', seperator)
self.write_section(fid_out, self.get_main_para_names()['pick'], self.write_section(fid_out, self.get_main_para_names()['pick'],
'common settings picker', seperator) 'common settings picker', seperator)
fid_out.write(('#special settings for calculating CF#\n'+ fid_out.write(('#special settings for calculating CF#\n'+

View File

@ -1762,8 +1762,6 @@ class AutoPickParaBox(QtGui.QWidget):
self.add_to_layout(self._main_layout, 'Seismic Moment', self.add_to_layout(self._main_layout, 'Seismic Moment',
self.parameter.get_main_para_names()['smoment']) self.parameter.get_main_para_names()['smoment'])
self.add_to_layout(self._main_layout, 'Focal Mechanism', self.add_to_layout(self._main_layout, 'Focal Mechanism',
self.parameter.get_main_para_names()['focmec'])
self.add_to_layout(self._main_layout, 'Pick Settings',
self.parameter.get_main_para_names()['pick'], self.parameter.get_main_para_names()['pick'],
False) False)
self.add_tab(self._main_layout, 'Main Settings') self.add_tab(self._main_layout, 'Main Settings')