Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. * 10 // * * 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitation of liability. * 17 // * * 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************************************** 25 // 26 // 27 // Code developed by: 28 // S.Guatelli, M. Large and A. Malaroda, University of Wollongong 29 // 30 // 31 #ifndef ICRP110PhantomMaterial_Male_H 32 #define ICRP110PhantomMaterial_Male_H 1 33 34 #include "globals.hh" 35 class G4Material; 36 37 class ICRP110PhantomMaterial_Male 38 { 39 public: 40 ICRP110PhantomMaterial_Male(); 41 ~ ICRP110PhantomMaterial_Male(); 42 43 public: 44 void DefineMaterials(); 45 G4Material* GetMaterial(G4String); //returns the material 46 47 private: 48 49 G4Material* fLung; 50 G4Material* fTeeth; 51 G4Material* fBone; 52 G4Material* fHumeri_upper; 53 G4Material* fHumeri_lower; 54 G4Material* fArm_lower; 55 G4Material* fHand; 56 G4Material* fClavicle; 57 G4Material* fCranium; 58 G4Material* fFemora_upper; 59 G4Material* fFemora_lower; 60 G4Material* fLeg_lower; 61 G4Material* fFoot; 62 G4Material* fMandible; 63 G4Material* fPelvis; 64 G4Material* fRibs; 65 G4Material* fScapulae; 66 G4Material* fSpine_cervical; 67 G4Material* fSpine_lumbar; 68 G4Material* fSpine_thoratic; 69 G4Material* fSacrum; 70 G4Material* fSternum; 71 G4Material* fHf_upper; 72 G4Material* fHf_lower; 73 G4Material* fMed_lowerleg; 74 G4Material* fMed_lowerarm; 75 G4Material* fCartilage; 76 G4Material* fSkin; 77 G4Material* fBlood; 78 G4Material* fMuscle; 79 G4Material* fLiver; 80 G4Material* fPancreas; 81 G4Material* fBrain; 82 G4Material* fHeart; 83 G4Material* fEye; 84 G4Material* fKidney; 85 G4Material* fStomach; 86 G4Material* fIntestine_sml; 87 G4Material* fIntestine_lrg; 88 G4Material* fSpleen; 89 G4Material* fThyroid; 90 G4Material* fBladder; 91 G4Material* fOvaries_testes; 92 G4Material* fAdrenals; 93 G4Material* fOesophagus; 94 G4Material* fMisc; 95 G4Material* fUterus_prostate; 96 G4Material* fLymph; 97 G4Material* fBreast_glandular; 98 G4Material* fBreast_adipose; 99 G4Material* fGastro_content; 100 G4Material* fUrine; 101 102 }; 103 #endif 104