-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8375057
commit c0992de
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -521,8 +521,12 @@ <h1>Source code for icefit.peakfit</h1><div class="highlight"><pre> | |
<span class="c1"># - Keep all pdf functions normalized in the steering yml (norm: True),</span> | ||
<span class="c1"># otherwise fit stability problems and uncertainty estimation is not consistent.</span> | ||
<span class="c1">#</span> | ||
<span class="c1"># - Use 'chi2' loss if using weighted event histograms (either MC or data)</span> | ||
<span class="c1"># Use 'nll' for unweighted Poisson count histograms (both MC and data)</span> | ||
<span class="c1"># - Use 'chi2' or 'huber' loss if using weighted event histograms (either MC or data)</span> | ||
<span class="c1"># Use 'nll' for unweighted Poisson count histograms</span> | ||
<span class="c1"># and a weighted count histograms via a scale transform (experimental)</span> | ||
<span class="c1"># </span> | ||
<span class="c1"># - For different fit types see: /docs/pdf/peakfit.pdf </span> | ||
<span class="c1"># </span> | ||
<span class="c1"># </span> | ||
<span class="c1"># Run with: python icefit/peakfit.py --analyze --group (--test_mode)</span> | ||
<span class="c1"># </span> | ||
|
@@ -549,7 +553,7 @@ <h1>Source code for icefit.peakfit</h1><div class="highlight"><pre> | |
|
||
<span class="kn">import</span> <span class="nn">ray</span> | ||
|
||
<span class="n">__VERSION__</span> <span class="o">=</span> <span class="mf">0.02</span> | ||
<span class="n">__VERSION__</span> <span class="o">=</span> <span class="mf">0.03</span> | ||
<span class="n">__AUTHOR__</span> <span class="o">=</span> <span class="s1">'[email protected]'</span> | ||
|
||
<span class="c1"># ========================================================================</span> | ||
|