Skip to content

Commit

Permalink
Merge branch 'add_conjugate_to_PEC'
Browse files Browse the repository at this point in the history
  • Loading branch information
CCampJr committed Mar 24, 2022
2 parents 1190bc8 + 41705c2 commit 5c15117
Show file tree
Hide file tree
Showing 6 changed files with 474 additions and 295 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ This document records all notable changes to
This project adheres to `PEP 440 -- Version Identification
and Dependency Specification <https://www.python.org/dev/peps/pep-0440/>`_.

0.4.1 (22-03-24)
----------------
- The UI for Phase Error Correction now incorporates the wavenumber-increased parameter of 0.4 release

0.4 (22-03-11)
---------------
- **Important**: PhaseErrCorrectALS now has parameter for whether wavenumber is increasing left-to-right. This is important to set correctly. This should match the `conjugate` parameter in the KramersKronig.
Expand Down
4 changes: 3 additions & 1 deletion crikit/CRIkitUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,9 @@ def errorCorrectPhase(self):

rng = self.hsi.freq.op_range_pix

plugin = _widgetALS(x=self.hsi.f_full, rng=rng)
wn_increase = (self.hsi.f[1] - self.hsi.f[1]) > 0
plugin = _widgetALS(x=self.hsi.f_full, rng=rng,
wavenumber_increasing=wn_increase)
winPlotEffect = _DialogPlotEffect.dialogPlotEffect(preview_spectra,
x=self.hsi.f_full,
plugin=plugin,
Expand Down
2 changes: 1 addition & 1 deletion crikit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* Charles H. Camp Jr. <charles.camp@nist.gov>
"""

__version__ = '0.4.0'
__version__ = '0.4.1'
Loading

0 comments on commit 5c15117

Please sign in to comment.