-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathggdex02.cfg
55 lines (49 loc) · 1.32 KB
/
ggdex02.cfg
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
#############################################
# Use for the top level builder
#############################################
[World]
# This is a list of builders that will be provided
# to configure.
subbuilders = ["DetectorEnclosure"]
# This is the python code class to be used. This can be found in
# ggdex02/World.py
class = ggdex02.World.Builder
# The arguments to World.WorldBuilder.configure(). GeGeDe passes these
# onto configure method
material = "Air"
dx = Q("10m")
dy = Q("10m")
dz = Q("10m")
#############################################
#############################################
[DetectorEnclosure]
class = ggdex02.DetectorEnclosure.Builder
subbuilders = ["InactiveLayer", "ActiveLayer"]
material = "Air"
dx = Q("1m")
dy = Q("1m")
dz = Q("1m")
repetitions = 25
BField = "(3.0 T, 0.0 T, 0.0 G)"
#############################################
#############################################
[ActiveLayer]
class = ggdex02.DetectorLayer.Builder
material = "Scintillator"
dx = Q("50cm")
dy = Q("50cm")
dz = Q("1.75cm")
Color = "blue"
Opacity = "1.0"
StepLimit = "1 mm"
SensDet = "ActiveHits"
#############################################
#############################################
[InactiveLayer]
class = ggdex02.DetectorLayer.Builder
material = "Lead"
dx = Q("50cm")
dy = Q("50cm")
dz = Q("2.5mm")
Color = "red"
Opacity = "0.30"