aboutsummaryrefslogtreecommitdiff
path: root/src/scaling.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scaling.h')
-rw-r--r--src/scaling.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/scaling.h b/src/scaling.h
index b6958b6c..a4ec6931 100644
--- a/src/scaling.h
+++ b/src/scaling.h
@@ -40,13 +40,11 @@
enum ScaleFlags
{
- SCALE_NO_B, /* Don't use Debye-Waller part */
+ SCALE_NONE = 0,
+ SCALE_NO_B = 1<<0, /* Don't use Debye-Waller part */
};
-extern int scale_one(const RefList *list1, const RefList *list2, int flags,
- double *G, double *B);
-
-extern int scale_one_crystal(Crystal *cr, const RefList *list2, int flags);
+extern int scale_one_crystal(Crystal *cr, const RefList *reference, int flags);
extern void scale_all(Crystal **crystals, int n_crystals, int nthreads,
int flags);