aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-07-23 20:02:14 +0200
committerThomas White <taw@physics.org>2015-07-23 20:02:14 +0200
commitdecf9d47416281c322def480a624bfabb0af7012 (patch)
tree27795b86dbafbef7add428e8a0dd719ff5d15077
parentcc6ea7ee6804abd10d7739424f93c889db33fc3c (diff)
indexamajig: Peak detection method must be parsed before checking peak path
-rw-r--r--src/indexamajig.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 0d528d39..65b86b07 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -493,17 +493,9 @@ int main(int argc, char *argv[])
return 1;
}
- /* Defaults */
if ( tempdir == NULL ) {
tempdir = strdup(".");
}
- if ( iargs.hdf5_peak_path == NULL ) {
- if ( iargs.peaks == PEAK_HDF5 ) {
- iargs.hdf5_peak_path = strdup("/processing/hitfinder/peakinfo");
- } else if ( iargs.peaks == PEAK_CXI ) {
- iargs.hdf5_peak_path = strdup("/entry_1/result_1");
- }
- }
/* Open input */
if ( strcmp(filename, "-") == 0 ) {
@@ -534,6 +526,13 @@ int main(int argc, char *argv[])
return 1;
}
free(speaks);
+ if ( iargs.hdf5_peak_path == NULL ) {
+ if ( iargs.peaks == PEAK_HDF5 ) {
+ iargs.hdf5_peak_path = strdup("/processing/hitfinder/peakinfo");
+ } else if ( iargs.peaks == PEAK_CXI ) {
+ iargs.hdf5_peak_path = strdup("/entry_1/result_1");
+ }
+ }
/* Check prefix (if given) */
if ( prefix == NULL ) {