blob: a35c712f47fe47bc06de347c8664add649f886f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Number of photons in pulse */
#define FLUENCE (2.0e11)
/* Detector's quantum efficiency */
#define DQE (0.9)
/* ADU per photon (front detector) */
/* Front detector, December */
#define DETECTOR_GAIN (167.0)
/* Front detector, June */
//#define DETECTOR_GAIN (20.9)
/* Radius of the water column */
#define WATER_RADIUS (3.0e-6 / 2.0)
/* Radius of X-ray beam */
#define BEAM_RADIUS (3.0e-6 / 2.0)
/* Photon energy in eV */
#define PHOTON_ENERGY (1780.0)
|