From ea1178d014eadb9fe8e24935693a5380b709ef33 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 10 Nov 2016 17:02:14 +0100 Subject: New partiality model from Ginn et al. --- src/partialator.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/partialator.c') diff --git a/src/partialator.c b/src/partialator.c index 428b0d68..5ad106c7 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -770,7 +770,7 @@ int main(int argc, char *argv[]) Stream *st; Crystal **crystals; char *pmodel_str = NULL; - PartialityModel pmodel = PMODEL_SCSPHERE; + PartialityModel pmodel = PMODEL_XSPHERE; int min_measurements = 2; char *rval; int polarisation = 1; @@ -975,10 +975,8 @@ int main(int argc, char *argv[]) if ( pmodel_str != NULL ) { if ( strcmp(pmodel_str, "unity") == 0 ) { pmodel = PMODEL_UNITY; - } else if ( strcmp(pmodel_str, "scgaussian") == 0 ) { - pmodel = PMODEL_SCGAUSSIAN; - } else if ( strcmp(pmodel_str, "scsphere") == 0 ) { - pmodel = PMODEL_SCSPHERE; + } else if ( strcmp(pmodel_str, "xsphere") == 0 ) { + pmodel = PMODEL_XSPHERE; } else if ( strcmp(pmodel_str, "random") == 0 ) { pmodel = PMODEL_RANDOM; } else { -- cgit v1.2.3