-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfig_full.json
90 lines (89 loc) · 1.6 KB
/
config_full.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"global":
{
"do_interpolation" : true,
"exact_time" : true,
"scattering":
{
"multiple_scattering" : "HighlandIntegral",
"multiple_scattering_multiplier" : 1.0,
"stochastic_deflection" : ["DefaultIoniz", "DefaultBrems", "DefaultEpair", "DefaultPhotonuclear"],
"stochastic_deflection_multiplier" : {
"Ioniz" : 1.0,
"Brems" : 1.0,
"Epair" : 1.0,
"Photonuclear" : 1.0
}
},
"CrossSections" : {
"brems": {
"parametrization": "KelnerKokoulinPetrukhin",
"multiplier" : 1.0,
"lpm": true
},
"epair": {
"parametrization": "KelnerKokoulinPetrukhin",
"multiplier" : 1.0,
"lpm": true
},
"ioniz": {
"parametrization": "BetheBlochRossi",
"multiplier" : 1.0
},
"photo": {
"parametrization": "AbramowiczLevinLevyMaor97",
"multiplier" : 1.0,
"shadow": "ButkevichMikheyev"
}
}
},
"sectors": [
{
"medium": "ice",
"geometries": [
{
"hierarchy": 0,
"shape": "sphere",
"origin": [0, 0, 0],
"outer_radius": 1e20,
"inner_radius": 0
}
],
"density_distribution":
{
"type": "homogeneous",
"mass_density" : 0.917
},
"cuts":
{
"e_cut": "inf",
"v_cut": 0.05,
"cont_rand": true
}
},
{
"medium": "ice",
"geometries": [
{
"hierarchy": 1,
"shape": "cylinder",
"origin": [0, 0, 0],
"outer_radius": 800,
"inner_radius": 0,
"height": 1600
}
],
"density_distribution":
{
"type": "homogeneous",
"mass_density" : 0.917
},
"cuts":
{
"e_cut": 500,
"v_cut": 1,
"cont_rand": false
}
}
]
}