aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/geometry.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-08-14 15:07:21 +0200
committerThomas White <taw@physics.org>2014-09-25 10:53:56 +0200
commit629934d82e202ea04b334c49efffe09aaa0f1c4e (patch)
treee12b6ca6bd72f76e8e687317eec8fc659d6c712c /libcrystfel/src/geometry.h
parenta06a3f67f57de0bc85982976b9ea6d598598e014 (diff)
Remove "sphere", "thin" and "gaussian" partiality models, add "scgaussian"
Diffstat (limited to 'libcrystfel/src/geometry.h')
-rw-r--r--libcrystfel/src/geometry.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/libcrystfel/src/geometry.h b/libcrystfel/src/geometry.h
index d8d226f0..ccdea1c2 100644
--- a/libcrystfel/src/geometry.h
+++ b/libcrystfel/src/geometry.h
@@ -46,23 +46,18 @@ extern "C" {
/**
* PartialityModel:
- * @PMODEL_SPHERE : Intersection of sphere with excited volume of reciprocal
- * space.
* @PMODEL_UNITY : Set all all partialities and Lorentz factors to 1.
- * @PMODEL_GAUSSIAN : Gaussian profiles in 3D
- * @PMODEL_THIN : Thin Ewald sphere intersecting sphere
* @PMODEL_SCSPHERE : Sphere model with source coverage factor included
+ * @PMODEL_SCGAUSSIAN : Gaussian model with source coverage factor included
*
* A %PartialityModel describes a geometrical model which can be used to
* calculate spot partialities and Lorentz correction factors.
**/
typedef enum {
- PMODEL_SPHERE,
PMODEL_UNITY,
- PMODEL_GAUSSIAN,
- PMODEL_THIN,
PMODEL_SCSPHERE,
+ PMODEL_SCGAUSSIAN,
} PartialityModel;