diff options
author | Thomas White <taw@physics.org> | 2009-12-04 15:31:29 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-12-04 15:31:29 +0100 |
commit | 2374fa202a63862ad32e3265b068db001815424a (patch) | |
tree | 1ae28b9e7bc3c42ba090c04af04018e23d363e16 | |
parent | f92af559c6fb8b0de7ae31b01593eaa4fc132637 (diff) |
Add new options to get_hkl
-rw-r--r-- | src/get_hkl.c | 89 |
1 files changed, 85 insertions, 4 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 907a47d4..477a2631 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -32,24 +32,87 @@ static void show_help(const char *s) printf( "Write idealised intensity lists.\n" "\n" -" -h, --help Display this help message.\n"); +" -h, --help Display this help message.\n" +"\n" +" -t, --template=<filename> Only include reflections mentioned in file.\n"); +} + + +static double *template_reflections(double *ref, const char *filename) +{ + char *rval; + double *out; + FILE *fh; + + fh = fopen(filename, "r"); + if ( fh == NULL ) { + return NULL; + } + + out = new_list_intensity(); + + do { + + char line[1024]; + double val; + int r; + signed int h, k, l; + + rval = fgets(line, 1023, fh); + + r = sscanf(line, "%i %i %i", &h, &k, &l); + if ( r != 3 ) continue; + + val = lookup_intensity(ref, h, k, l); + set_intensity(out, h, k, l, val); + + } while ( rval != NULL ); + + fclose(fh); + + return out; +} + + +/* Apply Poisson noise to all reflections */ +static void noisify_reflections(double *ref) +{ + signed int h, k, l; + + for ( h=-INDMAX; h<INDMAX; h++ ) { + for ( k=-INDMAX; k<INDMAX; k++ ) { + for ( l=-INDMAX; l<INDMAX; l++ ) { + + double val; + + val = lookup_intensity(ref, h, k, l); + val = poisson_noise(val); + set_intensity(ref, h, k, l, val); + + } + } + } } int main(int argc, char *argv[]) { int c; - double *ref; + double *ref, *tref; struct molecule *mol; + char *template = NULL; + int config_noisify = 0; /* Long options */ const struct option longopts[] = { {"help", 0, NULL, 'h'}, + {"template", 1, NULL, 't'}, + {"poisson", 0, &config_noisify, 1}, {0, 0, NULL, 0} }; /* Short options */ - while ((c = getopt_long(argc, argv, "hi:e:r", longopts, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "ht:", longopts, NULL)) != -1) { switch (c) { case 'h' : { @@ -57,6 +120,11 @@ int main(int argc, char *argv[]) return 0; } + case 't' : { + template = strdup(optarg); + break; + } + case 0 : { break; } @@ -71,7 +139,20 @@ int main(int argc, char *argv[]) mol = load_molecule(); get_reflections_cached(mol, eV_to_J(2.0e3)); ref = ideal_intensities(mol->reflections); - write_reflections("results/ideal-reflections.hkl", NULL, ref, 1, + + if ( template != NULL ) { + tref = template_reflections(ref, template); + if ( tref == NULL ) { + ERROR("Couldn't read template file!\n"); + return 1; + } + free(ref); + ref = tref; + } + + if ( config_noisify ) noisify_reflections(ref); + + write_reflections("results/ideal-reflections.hkl", NULL, tref, 1, mol->cell); return 0; |