Changeset 21c93c3 in sasmodels
- Timestamp:
- Mar 6, 2019 4:14:41 PM (6 years ago)
- Branches:
- master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- fd7291e
- Parents:
- f3767c2
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/convert.py
r610ef23 r21c93c3 105 105 translation[newid+str(k)] = oldid+str(k) 106 106 # Remove control parameter from the result 107 if model_info.control: 108 translation[model_info.control] = "CONTROL" 107 control_pars = [p.id for p in model_info.parameters.kernel_parameters 108 if p.is_control] 109 if control_pars: 110 control_id = control_pars[0] 111 translation[control_id] = "CONTROL" 109 112 return translation 110 113 -
sasmodels/sasview_model.py
rb171acd r21c93c3 255 255 control_pars = [p.id for p in model_info.parameters.kernel_parameters 256 256 if p.is_control] 257 control = control_pars[0] if control_pars else None257 control_id = control_pars[0] if control_pars else None 258 258 non_fittable = [] # type: List[str] 259 259 xlabel = model_info.profile_axes[0] if model_info.profile is not None else "" 260 260 variants = MultiplicityInfo(0, "", [], xlabel) 261 261 for p in model_info.parameters.kernel_parameters: 262 if p.id == control :262 if p.id == control_id: 263 263 non_fittable.append(p.name) 264 264 variants = MultiplicityInfo(
Note: See TracChangeset
for help on using the changeset viewer.