-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPrompt_photon_simulation.gdml
More file actions
52 lines (52 loc) · 1.68 KB
/
Prompt_photon_simulation.gdml
File metadata and controls
52 lines (52 loc) · 1.68 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<gdml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="/home/victor/geant4/source/source/persistency/gdml/schema/gdml.xsd">
<define>
<position name="col_pos" x="0" y="-110" z="-200"/>
<position name="col_pos1" x="0" y="-110" z="+200"/>
</define>
<materials>
<material Z="1" name="Vacuum" state="gas">
<D unit="g/cm3" value="1e-24"/>
<atom unit="g/mole" value="1.00794"/>
</material>
</materials>
<solids>
<box lunit="mm" name="WorldBox" x="2000" y="2000" z="2000"/>
<tube name= "sPhantom" rmin="0" rmax="50" z="400" deltaphi="2*pi" startphi="0" aunit="rad" lunit= "mm"/>
<box name="Box" x="200" y="100" z="360" lunit="mm"/>
<box name="Box1" x="200" y="100" z="360" lunit="mm"/>
</solids>
<structure>
<volume name="phantom">
<materialref ref="G4_WATER"/>
<solidref ref="sPhantom"/>
</volume>
<volume name="lvColimator">
<materialref ref="G4_Pb"/>
<solidref ref="Box" />
</volume>
<volume name="lvColimator1">
<materialref ref="G4_Pb"/>
<solidref ref="Box1" />
</volume>
<volume name="TOP">
<materialref ref="Vacuum"/>
<solidref ref="WorldBox"/>
<physvol name="phantom_phys">
<volumeref ref="phantom"/>
</physvol>
<physvol name="pvColimator">
<volumeref ref="lvColimator"/>
<positionref ref="col_pos"/>
</physvol>
<physvol name="pvColimator1">
<volumeref ref="lvColimator1"/>
<positionref ref="col_pos1"/>
</physvol>
</volume>
</structure>
<setup name="Default" version="1.0">
<world ref="TOP"/>
</setup>
</gdml>