09.03.2015 Views

An Introduction to Geant4 - Nuclear Physics - University of Liverpool

An Introduction to Geant4 - Nuclear Physics - University of Liverpool

An Introduction to Geant4 - Nuclear Physics - University of Liverpool

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Defining your materials in C++<br />

Define liquid Argon:<br />

G4double density = 1.390*g/cm3;<br />

G4double molMass = 39.95*g/mole;<br />

G4Material* lAr = new G4Material(name="liquidArgon", z=18.,molMass,<br />

density);<br />

Define Water:<br />

molMass = 1.01*g/mole;<br />

G4Element* elH = new G4Element(name="Hydrogen",symbol="H" ,<br />

z= 1., molMass);<br />

molMass = 16.00*g/mole;<br />

G4Element* elO = new G4Element(name="Oxygen" ,symbol="O" , z=<br />

8., molMass);<br />

density = 1.000*g/cm3;<br />

G4Material* H2O = new<br />

G4Material(name="Water",density,ncomponents=2);<br />

H2O->AddElement(elH, na<strong>to</strong>ms=2);<br />

H2O->AddElement(elO, na<strong>to</strong>ms=1);<br />

User Guide section 4.2

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!