// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4MaterialSetup.cc,v 1.4 2006/06/29 19:48:46 gunter Exp $ // GEANT4 tag $Name: geant4-09-03-cand-01 $ // // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) // // History: // ----------- // 07 Oct 2001 MGP Created // // ------------------------------------------------------------------- #include "globals.hh" #include "G4MaterialSetup.hh" #include "G4Material.hh" #include "G4Element.hh" void G4MaterialSetup::makeMaterials() { G4Material* Be = new G4Material("Beryllium", 4., 9.01*g/mole, 1.848*g/cm3); G4Material* graphite = new G4Material("Graphite",6., 12.00*g/mole, 2.265*g/cm3 ); G4Material* Al = new G4Material("Aluminium", 13., 26.98*g/mole, 2.7 *g/cm3); G4Material* Si = new G4Material("Silicon", 14., 28.055*g/mole, 2.33*g/cm3); G4Material* lAr = new G4Material("LArgon", 18., 39.95*g/mole, 1.393*g/cm3); G4Material* Fe = new G4Material("Iron", 26., 55.85*g/mole, 7.87*g/cm3); G4Material* Cu = new G4Material("Copper", 29., 63.55*g/mole, 8.96*g/cm3); G4Material* W = new G4Material("Tungsten", 74., 183.85*g/mole, 19.30*g/cm3); G4Material* Pb = new G4Material("Lead", 82., 207.19*g/mole, 11.35*g/cm3); G4Material* U = new G4Material("Uranium", 92., 238.03*g/mole, 18.95*g/cm3); G4Element* H = new G4Element ("Hydrogen", "H", 1. , 1.01*g/mole); G4Element* O = new G4Element ("Oxygen" , "O", 8. , 16.00*g/mole); G4Element* C = new G4Element ("Carbon" , "C", 6. , 12.00*g/mole); G4Element* Cs = new G4Element ("Cesium" , "Cs", 55. , 132.905*g/mole); G4Element* N = new G4Element("Nitrogen", "N" , 7., 14.01*g/mole); G4Element* I = new G4Element ("Iodide" , "I", 53. , 126.9044*g/mole); G4Material* maO = new G4Material("Oxygen", 8., 16.00*g/mole, 1.1*g/cm3); G4Material* water = new G4Material ("Water" , 1.*g/cm3, 2); water->AddElement(H,2); water->AddElement(O,1); G4Material* ethane = new G4Material ("Ethane" , 0.4241*g/cm3, 2); ethane->AddElement(H,6); ethane->AddElement(C,2); G4Material* CsI = new G4Material ("CsI" , 4.53*g/cm3, 2); CsI->AddElement(Cs,1); CsI->AddElement(I,1); G4Material* air = new G4Material("Air" , 1.290*mg/cm3, 2); air->AddElement(N,0.7); air->AddElement(O,0.3); // Dump the material table G4int nMaterials = G4Material::GetNumberOfMaterials(); G4cout << nMaterials << " materials created" << G4endl; // Dummy calls to avoid compilation warnings G4int i; i = Be->GetIndex(); i = graphite->GetIndex(); i = Al->GetIndex(); i = Si->GetIndex(); i = lAr->GetIndex(); i = Fe->GetIndex(); i = Cu->GetIndex(); i = W->GetIndex(); i = Pb->GetIndex(); i = U->GetIndex(); i = H->GetIndex(); i = O->GetIndex(); i = C->GetIndex(); i = Cs->GetIndex(); i = N->GetIndex(); i = I->GetIndex(); i = maO->GetIndex(); i = water->GetIndex(); i = ethane->GetIndex(); i = air->GetIndex(); i = CsI->GetIndex(); }