blob: 088c533adf1cb80150b6e21bdd180f253527f81d (
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 140
/* Array size */
#define IDIM (INDMAX*2 +1)
#endif /* DEFS_H */
|