comments
This commit is contained in:
parent
f1a6ac5057
commit
6d01fb23ed
2 changed files with 7 additions and 2 deletions
|
@ -40,7 +40,7 @@ iters = int(sys.argv[2])
|
||||||
print("\n-- Reading Options")
|
print("\n-- Reading Options")
|
||||||
options = read_par.Options()
|
options = read_par.Options()
|
||||||
|
|
||||||
############### Read Function
|
############### Read Function, from the MODEL parameter
|
||||||
"-- Reading Function"
|
"-- Reading Function"
|
||||||
(function, pltOptions) = FitTools.ChooseFunction( options['function'] )
|
(function, pltOptions) = FitTools.ChooseFunction( options['function'] )
|
||||||
|
|
||||||
|
|
|
@ -257,7 +257,12 @@ class Reading:
|
||||||
###########################################################################################
|
###########################################################################################
|
||||||
|
|
||||||
class ReadData:
|
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 ):
|
def __init__ ( self , datafile ):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue