From 35e26f6656cf061be87a0113d39b383ad4d7d631 Mon Sep 17 00:00:00 2001
From: Johannes Niskanen <niskanen@max-exfl084.desy.de>
Date: Tue, 31 May 2022 18:22:12 +0200
Subject: [PATCH] A few comments clarified

---
 src/toolbox_scs/detectors/hrixs.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/toolbox_scs/detectors/hrixs.py b/src/toolbox_scs/detectors/hrixs.py
index 60e4b5d..052f1c5 100644
--- a/src/toolbox_scs/detectors/hrixs.py
+++ b/src/toolbox_scs/detectors/hrixs.py
@@ -504,8 +504,8 @@ class hRIXS:
         # -gauss_fit
         # start and stop are values of data.energy
         # that define the range of these operations
-        # RETURNS MAXIMUM POSITIONS AND data with 
-        # shifted spectra
+        # RETURNS LINE CENTER POSITIONS 
+        # (and in future perhaps shifted spectra)
         #********************************************
         searchinds = (data.energy >=start)*(data.energy <=stop)
         peak_posis = []
@@ -524,6 +524,7 @@ class hRIXS:
         #********************************************
         # Alignment based on autocorrelation
         # this is a relative alignment method
+        # where 1st readout defines the abs scale
         #********************************************
         elif method.lower() == 'autocorrelation':
             #********************************************
@@ -585,7 +586,7 @@ class hRIXS:
                     plt.plot(x,p.x[0]*Gauss(x,p.x[1],p.x[2]))
                     raise Exception('align_readouts(): can not fit a gaussian to the data.')
         else: 
-            raise Exception('align_readouts() did recognize the method.')
+            raise Exception('align_readouts() did not recognize the method.')
         return peak_posis    
     
     
-- 
GitLab