Changes in / [d529d93:c7062fe] in sasmodels
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/convert.py
r310ddcb r228cbd3 129 129 warnings.warn("parameter background not used in sasview %s"%name) 130 130 131 131 132 # If it is a product model P*S, then check the individual forms for special 132 133 # cases. Note: despite the structure factor alone not having scale or … … 146 147 for p in "La", "Lb", "Lc", "Ld": 147 148 if p in oldpars: oldpars[p] *= 1e-13 149 elif name == 'core_shell_parallelepiped': 150 _remove_pd(oldpars, 'rimA', name) 151 elif name in ['mono_gauss_coil','poly_gauss_coil']: 152 del oldpars['i_zero'] 148 153 149 154 return oldpars … … 177 182 elif name == 'rpa': 178 183 pars['case_num'] = int(pars['case_num']) 184 elif name == 'mono_gauss_coil': 185 pars['i_zero'] = 1 186 elif name == 'poly_gauss_coil': 187 pars['i_zero'] = 1 188
Note: See TracChangeset
for help on using the changeset viewer.