Changeset b1c3295 in sasview for sansmodels/src/sans/models/c_models/CBCCrystalModel.cpp
- Timestamp:
- Dec 7, 2011 3:02:10 PM (13 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 00c2141
- Parents:
- 8bac371
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansmodels/src/sans/models/c_models/CBCCrystalModel.cpp
rd5b6a9d rb1c3295 127 127 } 128 128 129 static char name_params[] = "params"; 130 static char def_params[] = "Parameters"; 131 static char name_dispersion[] = "dispersion"; 132 static char def_dispersion[] = "Dispersion parameters"; 133 static char name_log[] = "log"; 134 static char def_log[] = "Log"; 135 129 136 static PyMemberDef CBCCrystalModel_members[] = { 130 {"params", T_OBJECT, offsetof(CBCCrystalModel, params), 0, 131 "Parameters"}, 132 {"dispersion", T_OBJECT, offsetof(CBCCrystalModel, dispersion), 0, 133 "Dispersion parameters"}, 134 {"log", T_OBJECT, offsetof(CBCCrystalModel, log), 0, 135 "Log"}, 137 {name_params, T_OBJECT, offsetof(CBCCrystalModel, params), 0, def_params}, 138 {name_dispersion, T_OBJECT, offsetof(CBCCrystalModel, dispersion), 0, def_dispersion}, 139 {name_log, T_OBJECT, offsetof(CBCCrystalModel, log), 0, def_log}, 136 140 {NULL} /* Sentinel */ 137 141 };
Note: See TracChangeset
for help on using the changeset viewer.