This commit is contained in:
Gaspard Jankowiak 2024-02-26 14:21:19 +01:00
parent f1a6ac5057
commit 6d01fb23ed
2 changed files with 7 additions and 2 deletions

View file

@ -40,7 +40,7 @@ iters = int(sys.argv[2])
print("\n-- Reading Options")
options = read_par.Options()
############### Read Function
############### Read Function, from the MODEL parameter
"-- Reading Function"
(function, pltOptions) = FitTools.ChooseFunction( options['function'] )

View file

@ -257,7 +257,12 @@ class Reading:
###########################################################################################
class ReadData:
'Read raw data from file'
"""Read raw data from file. Format:
1st column: q value
2nd column: I value
3rd column: error
"""
def __init__ ( self , datafile ):