diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-05-04 06:50:01 -0700 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-05-04 06:50:01 -0700 |
commit | eee5f3a9dac03134ee2269968ad870b0c812c036 (patch) | |
tree | 53242a82a30e5672cbe098196615f1e2fe7d91e6 | |
parent | e666496c3143524d835f4cbf489974ce6c5556a5 (diff) |
pattern_sim: Switchable gradient methods
-rw-r--r-- | src/diffraction.c | 2 | ||||
-rw-r--r-- | src/diffraction.h | 8 | ||||
-rw-r--r-- | src/indexamajig.c | 2 | ||||
-rw-r--r-- | src/pattern_sim.c | 42 |
4 files changed, 49 insertions, 5 deletions
diff --git a/src/diffraction.c b/src/diffraction.c index ad69c7a3..dcd6ae2c 100644 --- a/src/diffraction.c +++ b/src/diffraction.c @@ -178,7 +178,7 @@ struct rvec get_q(struct image *image, unsigned int xs, unsigned int ys, void get_diffraction(struct image *image, int na, int nb, int nc, const double *intensities, const unsigned int *counts, - UnitCell *cell, int do_water) + UnitCell *cell, int do_water, GradientMethod m) { unsigned int xs, ys; double ax, ay, az; diff --git a/src/diffraction.h b/src/diffraction.h index f3608a4b..85d06cc2 100644 --- a/src/diffraction.h +++ b/src/diffraction.h @@ -19,10 +19,16 @@ #include "image.h" #include "cell.h" +typedef enum { + GRADIENT_MOSAIC, + GRADIENT_INTERPOLATE, + GRADIENT_PHASED +} GradientMethod; + extern void get_diffraction(struct image *image, int na, int nb, int nc, const double *intensities, const unsigned int *counts, UnitCell *cell, - int do_water); + int do_water, GradientMethod m); extern struct rvec get_q(struct image *image, unsigned int xs, unsigned int ys, unsigned int sampling, float *ttp, float k); diff --git a/src/indexamajig.c b/src/indexamajig.c index 9e71e9a7..bd3b53e2 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -208,7 +208,7 @@ static void simulate_and_write(struct image *simage, struct gpu_context **gctx, get_diffraction_gpu(*gctx, simage, 24, 24, 40, cell); } else { get_diffraction(simage, 24, 24, 40, - intensities, counts, cell, 0); + intensities, counts, cell, 0, GRADIENT_MOSAIC); } record_image(simage, 0); diff --git a/src/pattern_sim.c b/src/pattern_sim.c index ab223288..a0d81a9d 100644 --- a/src/pattern_sim.c +++ b/src/pattern_sim.c @@ -53,6 +53,14 @@ static void show_help(const char *s) " this invocation to results/integr.h5.\n" " -i, --intensities=<file> Specify file containing reflection intensities\n" " to use.\n" +" -g, --gradients=<method> Use <method> for the calculation of shape\n" +" transform intensities. Choose from:\n" +" mosaic : Take the intensity of the nearest\n" +" Bragg position.\n" +" interpolate : Interpolate trilinearly between\n" +" six adjacent Bragg intensities.\n" +" phased : As 'interpolate', but take phase\n" +" values into account.\n" "\n" "By default, the simulation aims to be as accurate as possible. For greater\n" "speed, or for testing, you can choose to disable certain things using the\n" @@ -158,6 +166,8 @@ int main(int argc, char *argv[]) int config_nosfac = 0; int config_gpu = 0; int config_powder = 0; + char *grad_str = NULL; + GradientMethod grad; int ndone = 0; /* Number of simulations done (images or not) */ int number = 1; /* Number used for filename of image */ int n_images = 1; /* Generate one image by default */ @@ -178,11 +188,12 @@ int main(int argc, char *argv[]) {"no-noise", 0, &config_nonoise, 1}, {"intensities", 1, NULL, 'i'}, {"powder", 0, &config_powder, 1}, + {"gradients", 1, NULL, 'g'}, {0, 0, NULL, 0} }; /* Short options */ - while ((c = getopt_long(argc, argv, "hrn:i:", longopts, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "hrn:i:g:", longopts, NULL)) != -1) { switch (c) { case 'h' : { @@ -205,6 +216,11 @@ int main(int argc, char *argv[]) break; } + case 'g' : { + grad_str = strdup(optarg); + break; + } + case 0 : { break; } @@ -240,6 +256,28 @@ int main(int argc, char *argv[]) free(intfile); } + if ( grad_str == NULL ) { + STATUS("You didn't specify a gradient calculation method, so" + " I'm using the 'mosaic' method, which is fastest.\n"); + grad = GRADIENT_MOSAIC; + } else if ( strcmp(grad_str, "mosaic") == 0 ) { + grad = GRADIENT_MOSAIC; + } else if ( strcmp(grad_str, "interpolate") == 0) { + grad = GRADIENT_INTERPOLATE; + } else if ( strcmp(grad_str, "phased") == 0) { + grad = GRADIENT_PHASED; + } else { + ERROR("Unrecognised gradient method '%s'\n", grad_str); + return 1; + } + free(grad_str); + + if ( config_gpu && (grad != GRADIENT_MOSAIC) ) { + ERROR("Only the mosaic method can be used for gradients when" + "calculating on the GPU.\n"); + return 1; + } + /* Define image parameters */ image.width = 1024; image.height = 1024; @@ -298,7 +336,7 @@ int main(int argc, char *argv[]) get_diffraction_gpu(gctx, &image, na, nb, nc, cell); } else { get_diffraction(&image, na, nb, nc, intensities, counts, - cell, !config_nowater); + cell, !config_nowater, grad); } if ( image.data == NULL ) { ERROR("Diffraction calculation failed.\n"); |