ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4PhantomHeadBuilder.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4PhantomHeadBuilder.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 // Previous authors: G. Guerrieri, S. Guatelli and M. G. Pia, INFN Genova, Italy
27 // Authors (since 2007): S. Guatelli, University of Wollongong, Australia
28 //
29 #include "G4PhantomHeadBuilder.hh"
30 #include "G4VBodyFactory.hh"
31 #include "G4MIRDBodyFactory.hh"
33 #include "G4ORNLMaleBodyFactory.hh"
34 #include "G4PVPlacement.hh"
35 
37 {
38  // sex can be "female" or "male"
39  body = 0;
40  motherVolume = 0;
41  headVolume = 0;
42 }
43 
45 {
46  delete body;
47 }
48 
50 {
51  if (motherVolume == 0)
52  G4Exception("G4PhantomHeadBuilder::BuildHead()", "human_phantom0011", FatalException, "The moder Volume volume is missing !!!!!");
53 
54  G4cout <<"MotherVolume: " << motherVolume -> GetName()<< G4endl;
55  G4cout << "sensitivity : "<< sensitivity << G4endl;
56  headVolume = body -> CreateOrgan("Head",motherVolume, colourName, solidVis, sensitivity);
57 }
58 
60 {
61  if (headVolume == 0)
62  G4Exception("G4PhantomHeadBuilder::BuildSkull()", "human_phantom0012", FatalException, "The head volume is missing !!!!!");
63 
64  G4cout <<"MotherVolume: " << headVolume -> GetName()<< G4endl;
65  G4cout << "sensitivity : "<< sensitivity << G4endl;
66  body -> CreateOrgan( "Skull",headVolume, colourName, solidVis, sensitivity);
67 }
68 
70 {
71  if (headVolume == 0)
72  G4Exception("G4PhantomHeadBuilder::BuildBrain()", "human_phantom0013", FatalException, "The head volume is missing !!!!!");
73 
74  body -> CreateOrgan("Brain",headVolume, colourName, solidVis, sensitivity);
75 }
76 
78 {
79  return motherVolume;
80 }
81 
83 {
84  motherVolume = mother;
85 }
86 
87 
89 {
90  model = modelFlag;
91 
92  if(model=="MIRD" || model =="MIX") body = new G4MIRDBodyFactory();
93  if(model=="ORNLFemale")
94 {
95 #ifdef G4LIB_USE_GDML
96 body = new G4ORNLFemaleBodyFactory();
97 #else
98 G4cout << model << " Working with GDML only! set G4LIB_USE_GDML 1" << G4endl;
99 #endif
100 }
101 
102  if(model=="ORNLMale")
103 {
104 #ifdef G4LIB_USE_GDML
105 body = new G4ORNLMaleBodyFactory();
106 #else
107 G4cout << model << " Working with GDML only! set G4LIB_USE_GDML 1" << G4endl;
108 #endif
109 }
110 
111 }
112