Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4FemaleBuilder.cc
Go to the documentation of this file.
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 // Authors: S. Guatelli , M. G. Pia, INFN Genova and F. Ambroglini INFN Perugia, Italy
27 //
28 // Based on code developed by the undergraduate student G. Guerrieri
29 // Note: this is a preliminary beta-version of the code; an improved
30 // version will be distributed in the next Geant4 public release, compliant
31 // with the design in a forthcoming publication, and subject to a
32 // design and code review.
33 //
34 
35 #include"G4FemaleBuilder.hh"
36 
37 #include "G4VBodyFactory.hh"
38 //#include "G4MIRDBodyFactory.hh"
39 //#include "G4ORNLFemaleBodyFactory.hh"
40 
41 
43 {
44 }
45 
47 
48 {
49  delete body;
50 }
51 
52 void G4FemaleBuilder::BuildUterus(const G4String& colourName, G4bool solidVis, G4bool sensitivity )
53 
54 {
55 if (trunkVolume == 0)
56  G4Exception("G4FemaleBuilder::BuildUterus()", "human_phantom0006", FatalException, "The trunk volume is missing !!!!!");
57 
58  body -> CreateOrgan("Uterus",trunkVolume, colourName, solidVis, sensitivity); }
59 
60 void G4FemaleBuilder::BuildLeftOvary(const G4String& colourName, G4bool solidVis, G4bool sensitivity )
61 
62 {
63 if (trunkVolume == 0)
64  G4Exception("G4FemaleBuilder::BuildLeftOvary()", "human_phantom0007", FatalException, "The trunk volume is missing !!!!!");
65 
66  body -> CreateOrgan("LeftOvary",trunkVolume, colourName,
67  solidVis, sensitivity);
68 }
69 
70 void G4FemaleBuilder::BuildRightOvary(const G4String& colourName, G4bool solidVis, G4bool sensitivity )
71 
72 {
73  if (trunkVolume == 0)
74  G4Exception("G4FemaleBuilder::BuildRightOvary()", "human_phantom0008", FatalException, "The trunk volume is missing !!!!!");
75 
76  body -> CreateOrgan("RightOvary",trunkVolume, colourName,
77  solidVis, sensitivity);
78 }
79 
81  G4bool solidVis, G4bool sensitivity)
82 {
83  if (motherVolume == 0)
84  G4Exception("G4FemaleBuilder::BuildLeftBreast()", "human_phantom0009", FatalException, "The world volume is missing !!!!!");
85 
86  body -> CreateOrgan("LeftBreast",motherVolume, colourName,
87  solidVis, sensitivity);
88 }
89 
90 
92  G4bool solidVis,
93  G4bool sensitivity)
94 {
95  if (motherVolume == 0)
96  G4Exception("G4FemaleBuilder::BuildRightBreast()", "human_phantom0010", FatalException, "The world volume is missing !!!!!");
97 
98  body -> CreateOrgan("RightBreast",motherVolume, colourName,
99  solidVis, sensitivity);
100 
101 }
G4VPhysicalVolume * motherVolume
void BuildLeftOvary(const G4String &, G4bool, G4bool)
bool G4bool
Definition: G4Types.hh:79
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
G4VBodyFactory * body
void BuildRightBreast(const G4String &, G4bool, G4bool)
void BuildRightOvary(const G4String &, G4bool, G4bool)
G4VPhysicalVolume * trunkVolume
void BuildLeftBreast(const G4String &, G4bool, G4bool)
void BuildUterus(const G4String &, G4bool, G4bool)