aboutsummaryrefslogtreecommitdiff
path: root/src/post-refinement.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-07-23 15:10:31 +0200
committerThomas White <taw@physics.org>2021-07-23 15:10:31 +0200
commit45d0bb7f1d84dc96f20db4d39b16578c2e45bc96 (patch)
tree2dc4a021c739f9bcde4b4467f81c32fc1c22daac /src/post-refinement.h
parent382d82524446df5edc14eec05908541625129342 (diff)
partialator: Add --log-folder
Diffstat (limited to 'src/post-refinement.h')
-rw-r--r--src/post-refinement.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/post-refinement.h b/src/post-refinement.h
index a15d0396..546050a4 100644
--- a/src/post-refinement.h
+++ b/src/post-refinement.h
@@ -61,20 +61,24 @@ extern const char *str_prflag(enum prflag flag);
extern void refine_all(Crystal **crystals, int n_crystals,
RefList *full, int nthreads, PartialityModel pmodel,
int cycle, int no_logs,
- SymOpList *sym, SymOpList *amb, int scaleflags);
+ SymOpList *sym, SymOpList *amb, int scaleflags,
+ const char *log_folder);
extern void write_gridscan(Crystal *cr, const RefList *full,
int cycle, int serial, int scaleflags,
- PartialityModel model);
+ PartialityModel model,
+ const char *log_folder);
extern void write_specgraph(Crystal *crystal, const RefList *full,
- signed int cycle, int serial);
+ signed int cycle, int serial,
+ const char *log_folder);
/* Exported so it can be poked by tests/pr_p_gradient_check */
extern double gradient(Crystal *cr, int k, Reflection *refl,
PartialityModel pmodel);
extern void write_test_logs(Crystal *crystal, const RefList *full,
- signed int cycle, int serial);
+ signed int cycle, int serial,
+ const char *log_folder);
#endif /* POST_REFINEMENT_H */