Skip to content
Snippets Groups Projects

Try to make pre-commit pass

Merged Thomas Kluyver requested to merge pre-commit-pass into master
All threads resolved!
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -107,7 +107,7 @@ def fit_n_peaks(x: np.ndarray,
@@ -107,7 +107,7 @@ def fit_n_peaks(x: np.ndarray,
:param n_peaks: Number of Gaussian peaks to fit (min 2, max 4)
:param n_peaks: Number of Gaussian peaks to fit (min 2, max 4)
:param fix_d01: Fix position of peaks to the distance between noise and
:param fix_d01: Fix position of peaks to the distance between noise and
first photon peak.
first photon peak.
:param sigma_limit: Repeat fit keeping only bins within mu +-
:param sigma_limit: Repeat fit keeping only bins within mu +-
sigma_limit sigma
sigma_limit sigma
:return: minuit object
:return: minuit object
"""
"""
@@ -164,7 +164,7 @@ def fit_n_peaks(x: np.ndarray,
@@ -164,7 +164,7 @@ def fit_n_peaks(x: np.ndarray,
minuit = Minuit(chi2_f, **pars, pedantic=False)
minuit = Minuit(chi2_f, **pars, pedantic=False)
minuit.migrad()
minuit.migrad()
if sigma_limit > 0 :
if sigma_limit > 0 :
res = minuit.fitarg
res = minuit.fitarg
sel2 = (np.abs(x - res['g0mean']) < sigma_limit*res['g0sigma']) | \
sel2 = (np.abs(x - res['g0mean']) < sigma_limit*res['g0sigma']) | \
@@ -173,7 +173,7 @@ def fit_n_peaks(x: np.ndarray,
@@ -173,7 +173,7 @@ def fit_n_peaks(x: np.ndarray,
(np.abs(x - res['g3mean']) < sigma_limit*res['g3sigma'])
(np.abs(x - res['g3mean']) < sigma_limit*res['g3sigma'])
sel = sel & sel2
sel = sel & sel2
minuit.migrad()
minuit.migrad()
if do_minos:
if do_minos:
if minuit.get_fmin().is_valid:
if minuit.get_fmin().is_valid:
minuit.minos()
minuit.minos()
Loading