Files
geant4/examples/extended/persistency/gdml/G01/divisionvol.gdml
2024-06-28 13:08:51 +02:00

49 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<gdml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://cern.ch/service-spi/app/releases/GDML/schema/gdml.xsd">
<define>
</define>
<materials>
<material Z="1.0" name="AIR" state="gas">
<D value="1e-24"/>
<atom value="1.00794"/>
</material>
<material name="ALU" state="solid" Z="13.0">
<D value="2.70"/>
<atom value="26.98"/>
</material>
</materials>
<solids>
<box name="WorldBox" x="1000" y="1000" z="1000"/>
<box name="Cube" x="100" y="100" z="100"/>
</solids>
<structure>
<volume name="lvCube">
<materialref ref="ALU"/>
<solidref ref="Cube"/>
</volume>
<volume name="lvDivision">
<materialref ref="AIR"/>
<solidref ref="WorldBox"/>
<divisionvol axis="kXAxis" number="8" unit="mm" width="0" offset="0">
<volumeref ref="lvCube"/>
</divisionvol>
</volume>
<volume name="TOP">
<materialref ref="AIR"/>
<solidref ref="WorldBox"/>
<physvol>
<volumeref ref="lvDivision"/>
</physvol>
</volume>
</structure>
<setup version="1.0" name="Default">
<world ref="TOP"/>
</setup>
</gdml>