Geant4 Cross Reference |
1 <?xml version="1.0" encoding="UTF-8" ?> 2 <gdml_simple_extension xmlns:gdml_simple_extension="http://www.example.org" 3 xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" 4 xs:noNamespaceSchemaLocation="SimpleExtension.xsd"> 5 <extension> 6 <color name="test_color" R="0.1" G="0.2" B="0.3" A="1.0" /> 7 <color name="magenta" R="1.0" G="0.0" B="1.0" A="1.0" /> 8 <color name="green" R="0.0" G="1.0" B="0.0" A="1.0" /> 9 <color name="red" R="1.0" G="0.0" B="0.0" A="1.0" /> 10 <color name="blue" R="0.0" G="0.0" B="1.0" A="1.0" /> 11 <color name="yellow" R="1.0" G="1.0" B="0.0" A="1.0" /> 12 <color name="purple" R="0.5" G="0.0" B="0.5" A="1.0" /> 13 </extension> 14 <define> 15 <constant name="cellsize" value="5000"/> 16 </define> 17 <materials> 18 <material Z="1.0" name="AIR"> 19 <D value="1e-24"/> 20 <atom value="1.00794"/> 21 </material> 22 <element name="Oxygen" formula="O" Z="8."> 23 <atom value="16.0"/> 24 </element> 25 <element name="Nitrogen" formula="N" Z="7."> 26 <atom value="14.01"/> 27 </element> 28 <element name="Fluorine" formula="F" Z="9."> 29 <atom value="18.9984032"/> 30 </element> 31 <element name="Lead" formula="Pb" Z="82."> 32 <atom value="207.20"/> 33 </element> 34 <element name="Bismuth" formula="Bi" Z="83."> 35 <atom value="208.98040"/> 36 </element> 37 <element name="Germanium" formula="Ge" Z="32."> 38 <atom value="72.63"/> 39 </element> 40 <element name="Tungsten" formula="W" Z="74."> 41 <atom value="183.84"/> 42 </element> 43 <material name="Air"> 44 <D value="1.290" unit="mg/cm3"/> 45 <fraction n="0.7" ref="Nitrogen"/> 46 <fraction n="0.3" ref="Oxygen"/> 47 </material> 48 49 <material name="PbWO4"> 50 <D value="8.28" unit="g/cm3"/> 51 <composite n="1" ref="Lead"/> 52 <composite n="1" ref="Tungsten"/> 53 <composite n="4" ref="Oxygen"/> 54 </material> 55 </materials> 56 <solids> 57 <box name="WorldBox" lunit="mm" x="cellsize+1000" y="cellsize+1000" z="cellsize+1000"/> 58 <box name="CalorimeterCell" lunit="mm" x="cellsize" y="cellsize" z="cellsize"/> 59 </solids> 60 61 <structure> 62 <volume name="CalorimeterVolume"> 63 <materialref ref="PbWO4"/> 64 <solidref ref="CalorimeterCell"/> 65 <auxiliary auxtype="SensDet" auxvalue="Calorimeter"/> 66 <colorref ref="green"/> 67 </volume> 68 69 <volume name="TOP"> 70 <materialref ref="AIR"/> 71 <solidref ref="WorldBox"/> 72 <physvol name="pvolCalorimeter" copynumber="0" >> 73 <volumeref ref="CalorimeterVolume"/> 74 <position name="posijk" x="0" y="0" z="0"/> 75 </physvol> 76 </volume> 77 </structure> 78 79 <setup version="1.0" name="Default"> 80 <world ref="TOP"/> 81 </setup> 82 </gdml_simple_extension> 83 84