blob: 81bcba7c062bcc0fd9588f4f4ec63f91320b9a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* defs.h
*
* Constant definitions which must be consistent throughout
*
* (c) 2006-2010 Thomas White <taw@physics.org>
*
* Part of CrystFEL - crystallography with a FEL
*
*/
#ifndef DEFS_H
#define DEFS_H
/* Maxmimum index to hold values up to (can be increased if necessary) */
#define INDMAX 128
/* Array size */
#define IDIM (INDMAX*2 +1)
#endif /* DEFS_H */
|