blob: 02366f91e7d412f98fce628b5285a2872aac3477 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SNO_H
#define SNO_H
/* Density of heavy water at 10 degrees Celsius.
*
* From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */
#define HEAVY_WATER_DENSITY 1.10595
/* Density of regular water at 10 degrees Celsius.
*
* From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */
#define WATER_DENSITY 0.99973
/* Radius of the AV in cm. */
#define AV_RADIUS_INNER 600.50
#define AV_RADIUS_OUTER 606.00
#define AV_RADIUS 603.25
/* FIXME: is this right? */
#define PSUP_RADIUS 800.0
#endif
|