104 lines
3.4 KiB
C++
104 lines
3.4 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// Code developed by:
|
|
// S.Guatelli, M. Large and A. Malaroda, University of Wollongong
|
|
//
|
|
//
|
|
#ifndef ICRP110PhantomMaterial_Female_H
|
|
#define ICRP110PhantomMaterial_Female_H 1
|
|
|
|
#include "globals.hh"
|
|
class G4Material;
|
|
|
|
class ICRP110PhantomMaterial_Female
|
|
{
|
|
public:
|
|
ICRP110PhantomMaterial_Female();
|
|
~ ICRP110PhantomMaterial_Female();
|
|
|
|
public:
|
|
void DefineMaterials();
|
|
G4Material* GetMaterial(G4String); //returns the material
|
|
|
|
private:
|
|
|
|
G4Material* fLung;
|
|
G4Material* fTeeth;
|
|
G4Material* fBone;
|
|
G4Material* fHumeri_upper;
|
|
G4Material* fHumeri_lower;
|
|
G4Material* fArm_lower;
|
|
G4Material* fHand;
|
|
G4Material* fClavicle;
|
|
G4Material* fCranium;
|
|
G4Material* fFemora_upper;
|
|
G4Material* fFemora_lower;
|
|
G4Material* fLeg_lower;
|
|
G4Material* fFoot;
|
|
G4Material* fMandible;
|
|
G4Material* fPelvis;
|
|
G4Material* fRibs;
|
|
G4Material* fScapulae;
|
|
G4Material* fSpine_cervical;
|
|
G4Material* fSpine_lumbar;
|
|
G4Material* fSpine_thoratic;
|
|
G4Material* fSacrum;
|
|
G4Material* fSternum;
|
|
G4Material* fHf_upper;
|
|
G4Material* fHf_lower;
|
|
G4Material* fMed_lowerleg;
|
|
G4Material* fMed_lowerarm;
|
|
G4Material* fCartilage;
|
|
G4Material* fSkin;
|
|
G4Material* fBlood;
|
|
G4Material* fMuscle;
|
|
G4Material* fLiver;
|
|
G4Material* fPancreas;
|
|
G4Material* fBrain;
|
|
G4Material* fHeart;
|
|
G4Material* fEye;
|
|
G4Material* fKidney;
|
|
G4Material* fStomach;
|
|
G4Material* fIntestine_sml;
|
|
G4Material* fIntestine_lrg;
|
|
G4Material* fSpleen;
|
|
G4Material* fThyroid;
|
|
G4Material* fBladder;
|
|
G4Material* fOvaries_testes;
|
|
G4Material* fAdrenals;
|
|
G4Material* fOesophagus;
|
|
G4Material* fMisc;
|
|
G4Material* fUterus_prostate;
|
|
G4Material* fLymph;
|
|
G4Material* fBreast_glandular;
|
|
G4Material* fBreast_adipose;
|
|
G4Material* fGastro_content;
|
|
G4Material* fUrine;
|
|
|
|
};
|
|
#endif
|