Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:16:51

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 // Code developed by:
0028 // S.Guatelli, M. Large and A. Malaroda, University of Wollongong
0029 //
0030 //
0031 #ifndef ICRP110PhantomMaterial_Male_H
0032 #define ICRP110PhantomMaterial_Male_H 1
0033 
0034 #include "globals.hh"
0035 class G4Material;
0036 
0037 class ICRP110PhantomMaterial_Male
0038 { 
0039 public:
0040   ICRP110PhantomMaterial_Male();
0041   ~ ICRP110PhantomMaterial_Male();
0042 
0043 public:
0044   void  DefineMaterials();
0045   G4Material* GetMaterial(G4String); //returns the material
0046 
0047 private:
0048 
0049   G4Material* fLung;
0050   G4Material* fTeeth;
0051   G4Material* fBone;
0052   G4Material* fHumeri_upper;
0053   G4Material* fHumeri_lower;
0054   G4Material* fArm_lower;
0055   G4Material* fHand;
0056   G4Material* fClavicle;
0057   G4Material* fCranium;
0058   G4Material* fFemora_upper;
0059   G4Material* fFemora_lower;
0060   G4Material* fLeg_lower;
0061   G4Material* fFoot;
0062   G4Material* fMandible;
0063   G4Material* fPelvis;
0064   G4Material* fRibs;
0065   G4Material* fScapulae;
0066   G4Material* fSpine_cervical;
0067   G4Material* fSpine_lumbar;
0068   G4Material* fSpine_thoratic;
0069   G4Material* fSacrum;
0070   G4Material* fSternum;
0071   G4Material* fHf_upper;
0072   G4Material* fHf_lower;
0073   G4Material* fMed_lowerleg;
0074   G4Material* fMed_lowerarm;
0075   G4Material* fCartilage;
0076   G4Material* fSkin;
0077   G4Material* fBlood;
0078   G4Material* fMuscle;
0079   G4Material* fLiver;
0080   G4Material* fPancreas;
0081   G4Material* fBrain;
0082   G4Material* fHeart;
0083   G4Material* fEye;
0084   G4Material* fKidney;
0085   G4Material* fStomach;
0086   G4Material* fIntestine_sml;
0087   G4Material* fIntestine_lrg;
0088   G4Material* fSpleen;
0089   G4Material* fThyroid;
0090   G4Material* fBladder;
0091   G4Material* fOvaries_testes;
0092   G4Material* fAdrenals;
0093   G4Material* fOesophagus;
0094   G4Material* fMisc;
0095   G4Material* fUterus_prostate;
0096   G4Material* fLymph;
0097   G4Material* fBreast_glandular;
0098   G4Material* fBreast_adipose;
0099   G4Material* fGastro_content;
0100   G4Material* fUrine;
0101 
0102 };
0103 #endif