diff options
author | Thomas White <taw@physics.org> | 2011-08-15 14:00:12 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:36 +0100 |
commit | 60d4d5388355ba1f8306c6d01bab98dc53f2addf (patch) | |
tree | 5da0d953ec583c98da81fce7212c5e4c871845cd /src | |
parent | d475475baafd8047f4c4e0c41132b2944f3b1efd (diff) |
Formatting
Diffstat (limited to 'src')
-rw-r--r-- | src/get_hkl.c | 8 | ||||
-rw-r--r-- | src/pattern_sim.c | 8 | ||||
-rw-r--r-- | src/powder_plot.c | 16 |
3 files changed, 16 insertions, 16 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 6fc262a4..1f211597 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -416,10 +416,10 @@ int main(int argc, char *argv[]) } input = read_reflections(input_file); - if (input == NULL) { - ERROR("Problem reading input file %s\n",input_file); - return 1; - } + if ( input == NULL ) { + ERROR("Problem reading input file %s\n", input_file); + return 1; + } free(input_file); if ( check_list_symmetry(input, mero) ) { ERROR("The input reflection list does not appear to" diff --git a/src/pattern_sim.c b/src/pattern_sim.c index bad74615..62390017 100644 --- a/src/pattern_sim.c +++ b/src/pattern_sim.c @@ -416,10 +416,10 @@ int main(int argc, char *argv[]) RefList *reflections; reflections = read_reflections(intfile); - if (reflections == NULL) { - ERROR("Problem reading input file %s\n",intfile); - return 1; - } + if ( reflections == NULL ) { + ERROR("Problem reading input file %s\n", intfile); + return 1; + } free(intfile); if ( grad == GRADIENT_PHASED ) { diff --git a/src/powder_plot.c b/src/powder_plot.c index 754ca459..d31ce59c 100644 --- a/src/powder_plot.c +++ b/src/powder_plot.c @@ -992,7 +992,7 @@ int main(int argc, char *argv[]) if ( file_type == FILE_HKL ) { need_geometry = 0; need_beam = 0; - } + } /* Get geometry, beam and pdb files and parameters as needed */ if ( need_geometry ) { @@ -1058,15 +1058,15 @@ int main(int argc, char *argv[]) /* Set up histogram info*/ if ( file_type == FILE_HKL ) { - /* get q range from Miller indices in hkl + /* get q range from Miller indices in hkl file. */ resolution_limits(image.reflections, cell, - &hist_info.q_min, &hist_info.q_max); + &hist_info.q_min, &hist_info.q_max); } else { - if (hist_info.q_min < 0.0 ) { + if ( hist_info.q_min < 0.0 ) { hist_info.q_min = smallest_q(&image); } - if (hist_info.q_max < 0.0 ) { + if ( hist_info.q_max < 0.0 ) { hist_info.q_max = largest_q(&image); } } @@ -1076,11 +1076,11 @@ int main(int argc, char *argv[]) "is greator then your max q value of: %e\n", hist_info.q_min, hist_info.q_max); return 1; - } - if (hist_info.spacing == LINEAR) { + } + if ( hist_info.spacing == LINEAR) { hist_info.q_delta = (hist_info.q_max - hist_info.q_min)/ hist_info.histsize; - } else if (hist_info.spacing == q2) { + } else if ( hist_info.spacing == q2) { hist_info.q_delta = (pow(hist_info.q_max, 2.0) - pow(hist_info.q_min, 2.0)) / hist_info.histsize; |