ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4CustomFemaleBuilder.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4CustomFemaleBuilder.cc
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 // Previous authors: G. Guerrieri, S. Guatelli and M. G. Pia, INFN Genova, Italy
28 // Authors (since 2007): S. Guatelli,University of Wollongong, Australia
29 //
30 //
31 
33 
34 #include "G4VBodyFactory.hh"
35 #include "G4VoxelBreastFactory.hh"
36 //#include "G4MIRDBodyFactory.hh"
37 //#include "G4ORNLCustomFemaleBodyFactory.hh"
38 
39 
41 {
42 }
43 
45 
46 {
47  delete body;
48 }
49 
51 
52 {
53 if (trunkVolume == 0)
54  G4Exception("G4CustomFemaleBuilder::BuildUterus()", "human_phantom0001", FatalException, "The trunk volume is missing !!!!!");
55 
56  body -> CreateOrgan("Uterus",trunkVolume, colourName, solidVis, sensitivity); }
57 
59 
60 {
61  if (trunkVolume == 0)
62  G4Exception("G4CustomFemaleBuilder::BuildLeftOvary()", "human_phantom0002", FatalException, "The trunk volume is missing !!!!!");
63 
64  body -> CreateOrgan("LeftOvary",trunkVolume, colourName,
65  solidVis, sensitivity);
66 }
67 
69 
70 {
71  if (trunkVolume == 0)
72  G4Exception("G4CustomFemaleBuilder::BuildRightOvary()", "human_phantom0003", FatalException, "The trunk volume is missing !!!!!");
73 
74  body -> CreateOrgan("RightOvary",trunkVolume, colourName,
75  solidVis, sensitivity);
76 }
77 
79  G4bool solidVis, G4bool sensitivity)
80 {
81  G4cout << "BuildVoxelLeftBreast" << G4endl;
82  if (motherVolume == 0)
83  G4Exception("G4CustomFemaleBuilder::BuildVoxelLeftBreast()", "human_phantom0004", FatalException, "The world volume is missing !!!!!");
84 
85  G4VBodyFactory* customBody = new G4VoxelBreastFactory();
86  customBody -> CreateOrgan("LeftBreast",motherVolume, colourName,
87  solidVis, sensitivity);
88  delete customBody;
89 }
90 
91 
93  G4bool solidVis,
95 {
96  if (motherVolume == 0)
97  G4Exception("G4CustomFemaleBuilder::BuildVoxelRightBreast()", "human_phantom0005", FatalException, "The world volume is missing !!!!!");
98 
99  G4VBodyFactory* customBody = new G4VoxelBreastFactory();
100  customBody -> CreateOrgan("RightBreast",motherVolume, colourName,
101  solidVis, sensitivity);
102  delete customBody;
103 }