diff options
author | Thomas White <taw@physics.org> | 2014-06-26 16:34:59 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-06-27 15:44:28 +0200 |
commit | 8bcc2f1fd10f5c1efdf89c00d04af1f0de948741 (patch) | |
tree | 4caae4331b505cae573923dd71e014b7e7148052 /src/partialator.c | |
parent | 19f977c6d62ffca9f13bcdefef32b5b27a326b7a (diff) |
Add Thin Ewald Sphere model
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/partialator.c b/src/partialator.c index 2ef01dba..e5083611 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -348,6 +348,8 @@ int main(int argc, char *argv[]) pmodel = PMODEL_UNITY; } else if ( strcmp(pmodel_str, "gaussian") == 0 ) { pmodel = PMODEL_GAUSSIAN; + } else if ( strcmp(pmodel_str, "thin") == 0 ) { + pmodel = PMODEL_THIN; } else { ERROR("Unknown partiality model '%s'.\n", pmodel_str); return 1; |