remove variables which are attributes of classes
This commit is contained in:
parent
32eee12f25
commit
4bb75d17fb
@ -28,12 +28,6 @@ class AutoPicking(object):
|
||||
:param: cf, characteristic function, on which the picking algorithm is applied
|
||||
:type: `~pylot.core.pick.CharFuns.CharacteristicFunction` object
|
||||
|
||||
:param: Tcf, corresponding time array
|
||||
:type: array
|
||||
|
||||
:param: dt, sampling interval [s]
|
||||
:type: float
|
||||
|
||||
:param: Tslope, length of time window after pick used to determine slope
|
||||
for quality estimation [s]
|
||||
:type: float
|
||||
|
@ -58,8 +58,8 @@ def run_makeCF(project, database, event, iplot, station=None):
|
||||
##############################################################
|
||||
#calculate HOS-CF using subclass HOScf of class CharacteristicFunction
|
||||
hoscf = HOScf(st_copy, cuttimes, t2, p) #instance of HOScf
|
||||
#get corresponding time array
|
||||
thoscf = np.arange(0, len(hoscf.getCF()) / tr_filt.stats.sampling_rate, tr_filt.stats.delta) + cuttimes[0]
|
||||
#get corresponding time array -> unnecessary because implemented in CharacteristicFunction
|
||||
# thoscf = np.arange(0, len(hoscf.getCF()) / tr_filt.stats.sampling_rate, tr_filt.stats.delta) + cuttimes[0]
|
||||
##############################################################
|
||||
#get onset time from HOS-CF using class Picker
|
||||
#hospick = PragPicker(hoscf.getCF(), thoscf, 2, 70, [1, 0.5, 0.2], 2, 0.001, 0.2)
|
||||
|
Loading…
Reference in New Issue
Block a user