Skip to content

Commit

Permalink
Update RFdeconProcessor.py
Browse files Browse the repository at this point in the history
Fix error that caused the actual_output method to always fail.  One line change.   We must not have this method tested in our test suite or it would have been detected before.
  • Loading branch information
pavlis committed May 30, 2024
1 parent 91addbb commit 1a0d2b1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/mspasspy/algorithms/RFdeconProcessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ def actual_output(self):
processor.loadwavelet(DoubleVector(self.wvector))
if self.__uses_noise and hasattr(self, "nvector"):
processor.loadnoise(DoubleVector(self.nvector))
processor.process()
return processor.actual_output()

def ideal_output(self):
Expand Down

0 comments on commit 1a0d2b1

Please sign in to comment.