1 """
2 A model implementing the Refl.
3 """
4
5 from park.fitpark.parameterSet import ParameterSet
6
7
9 """
10 Refl
11 """
12
13 PARAMS = { 'depth' : 100,
14 'rough':5.0,
15 'rho':1.0,
16 'mu': 1.0
17 }
18 PARAMS_TAG = 'refl'
19
21 """ constructor. """
22 ParameterSet.__init__(self, name)
23
24
25
27 """
28 Magnetic Case
29 """
30
31 PARAMS = { 'depth' : 100,
32 'rough':5.0,
33 'rho':1.0,
34 'mu': 1.0,
35 'rho_m':0.0,
36 'theta_m':270
37 }
38 PARAMS_TAG = 'refl'
39
41 """ constructor. """
42 ParameterSet.__init__(self, name)
43