@@ -77,7 +77,7 @@ class Background(Signal):
7777 type : TypeOptions
7878 The type of background (constant, function or data)
7979 source : str
80- The source data for the background;
80+ The source of the background;
8181 - if type is 'constant', this should be the name of a background parameter.
8282 - if type is 'data', this should be the name of a dataset defined in `Project.data`.
8383 - if type is 'function', this should be the name of a custom function defined in `Project.custom_files`.
@@ -132,15 +132,16 @@ class Contrast(RATModel):
132132 The name of the bulk-out parameter which defines the SLD of the interface between the last
133133 layer and the environment.
134134 scalefactor : str
135+ The name of the scalefactor which defines how much the data for this contrast should be scaled.
135136 resolution : str
136137 The name of the instrument resolution for this contrast.
137138 resample : bool
138139 Whether adaptive resampling should be used for interface microslicing.
139140 model : list[str]
140141 If this is a standard layers model, this should be a list of layer names
141142 that make up the slab model for this contrast.
142- For custom models, this should be a list of custom file names of the custom
143- model functions .
143+ For custom models, this should be a list containing just the custom file name for the
144+ custom model function .
144145
145146 """
146147
@@ -213,11 +214,13 @@ class ContrastWithRatio(RATModel):
213214 resample : bool
214215 Whether adaptive resampling should be used for interface microslicing.
215216 domain_ratio : str
217+ The name of the domain ratio parameter describing how the first domain should be weighted
218+ relative to the second.
216219 model : list[str]
217- If this is a standard layers model, this should be a list of layer names
218- that make up the slab model for this contrast.
219- For custom models, this should be a list of custom file names of the custom
220- model functions .
220+ If this is a standard layers model, this should be a list of the names of the two domain contrasts
221+ which make up the domain model for this contrast.
222+ For custom models, this should be a list containing just the custom file name for the
223+ custom model function .
221224
222225 """
223226
@@ -302,7 +305,7 @@ class Data(RATModel, arbitrary_types_allowed=True):
302305 name : str
303306 The name of this dataset.
304307 data : np.ndarray[np.float64]
305- The (x,y,z ) data for this dataset, given as a Numpy array of three columns.
308+ The (x, y, error ) data for this dataset, given as a Numpy array of three columns.
306309 data_range : list[float]
307310 simulation_range : list[float]
308311
@@ -405,10 +408,7 @@ class DomainContrast(RATModel):
405408 name : str
406409 The name of this domain contrast.
407410 model : list[str]
408- If this is a standard layers model, this should be a list of layer names
409- that make up the slab model for this contrast.
410- For custom models, this should be a list of custom file names of the custom
411- model functions.
411+ A list of layer names that make up the slab model for this contrast.
412412
413413 """
414414
0 commit comments