data_names(self,
set=' all ' ,
error_names=False,
sim_names=False)
| source code
|
Return a list of all spin container specific model-free object
names.
Description
The names are as follows:
-
'model', the model-free model name.
-
'equation', the model-free equation type.
-
'params', an array of the model-free parameter names associated
with the model.
-
's2', S2.
-
's2f', S2f.
-
's2s', S2s.
-
'local_tm', local tm.
-
'te', te.
-
'tf', tf.
-
'ts', ts.
-
'rex', Rex.
-
'r', bond length.
-
'csa', CSA value.
-
'nucleus', the heteronucleus type.
-
'chi2', chi-squared value.
-
'iter', iterations.
-
'f_count', function count.
-
'g_count', gradient count.
-
'h_count', hessian count.
-
'warning', minimisation warning.
- Parameters:
set (str) - The set of object names to return. This can be set to 'all' for
all names, to 'generic' for generic object names, 'params' for
model-free parameter names, or to 'min' for minimisation specific
object names.
error_names (bool) - A flag which if True will add the error object names as well.
sim_names (bool) - A flag which if True will add the Monte Carlo simulation object
names as well.
- Returns: list of str
- The list of object names.
|