Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4MIRDThyroid.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 and M. G. Pia, INFN Genova, 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 #include "G4MIRDThyroid.hh"
35 
36 #include "globals.hh"
37 #include "G4SystemOfUnits.hh"
38 #include "G4SDManager.hh"
39 #include "G4VisAttributes.hh"
41 #include "G4RotationMatrix.hh"
42 #include "G4ThreeVector.hh"
43 #include "G4VPhysicalVolume.hh"
44 #include "G4PVPlacement.hh"
45 #include "G4Tubs.hh"
46 #include "G4Box.hh"
47 #include "G4VSolid.hh"
48 #include "G4SubtractionSolid.hh"
49 
51 {
52 }
53 
55 {
56 }
57 
59 {
61  G4Material* soft = material -> GetMaterial("soft_tissue");
62  delete material;
63 
64  G4double z= 4.20*cm; //c thickness = c,
65  G4double rmin= 0. * cm;
66  G4double rmax= 1.85 *cm; //Rmax
67  G4double startphi = 0. * degree;
68  G4double deltaphi= 180. * degree; // y< y0
69 
70  G4Tubs* LobOfThyroidOut = new G4Tubs("LobOfThyroidOut",
71  rmin, rmax,z/2.,
72  startphi, deltaphi);
73 
74  z= 4.50*cm; // c thickness + something
75  rmax= 0.83 * cm; //r
76  deltaphi= 360. * degree;
77  G4Tubs* LobOfThyroidIn = new G4Tubs("LobOfThyroidIn",
78  rmin, rmax,z/2.,
79  startphi, deltaphi);
80 
81  G4double xx = 3.72*cm;
82  G4double yy= 3.72*cm;
83  G4double zz= 20.00*cm;
84  G4Box* SubtrThyroid = new G4Box("SubtrThyroid",
85  xx/2., yy/2., zz/2.);
86 
87  // subtraction of the two tubs
88  G4SubtractionSolid* FirstThyroid = new G4SubtractionSolid("FirstThyroid",
89  LobOfThyroidOut,
90  LobOfThyroidIn);
91 
92  G4RotationMatrix* relative_matrix = new G4RotationMatrix();
93  relative_matrix -> rotateX(-50.* degree);
94 
95  G4SubtractionSolid* SecondThyroid = new G4SubtractionSolid("SecondThyroid",
96  FirstThyroid,
97  SubtrThyroid,
98  relative_matrix,
99  G4ThreeVector(0.0 *cm,0.0 *cm, 4.20*cm));
100 
101  G4RotationMatrix* relative_matrix_2 = new G4RotationMatrix();
102  relative_matrix_2 -> rotateX(50.* degree);
103 
104 G4SubtractionSolid* thyroid = new G4SubtractionSolid("SecondThyroid",
105  SecondThyroid,
106  SubtrThyroid,
107  relative_matrix_2,
108  G4ThreeVector(0.0 *cm,0.0 *cm, -5.40*cm));
109 
110 
111 
112  G4LogicalVolume* logicThyroid = new G4LogicalVolume(thyroid, soft,
113  "ThyroidVolume",
114  0, 0, 0);
115 
117 
118  rm -> rotateZ(180.*degree);
119 
120  G4VPhysicalVolume* physThyroid = new G4PVPlacement(rm,
121  G4ThreeVector(0.0*cm,-3.91*cm, -5.925*cm),//y0
122  "physicalThyroid",
123  logicThyroid,
124  mother,
125  false,
126  0);
127 
128  // Sensitive Body Part
129  if (sensitivity==true)
130  {
132  logicThyroid->SetSensitiveDetector( SDman->FindSensitiveDetector("BodyPartSD") );
133  }
134 
135  // Visualization Attributes
136  G4VisAttributes* ThyroidVisAtt = new G4VisAttributes(G4Colour(0.0,1.0,1.0));
137  ThyroidVisAtt->SetForceSolid(true);
138  logicThyroid->SetVisAttributes(ThyroidVisAtt);
139 
140  G4cout << "Thyroid created for "<<sex << " !!!!!!" << G4endl;
141 
142  // Testing Thyroid Volume
143  G4double ThyroidVol = logicThyroid->GetSolid()->GetCubicVolume();
144  G4cout << "Volume of Thyroid = " << ThyroidVol/cm3 << " cm^3" << G4endl;
145 
146  // Testing Thyroid Material
147  G4String ThyroidMat = logicThyroid->GetMaterial()->GetName();
148  G4cout << "Material of Thyroid = " << ThyroidMat << G4endl;
149 
150  // Testing Density
151  G4double ThyroidDensity = logicThyroid->GetMaterial()->GetDensity();
152  G4cout << "Density of Material = " << ThyroidDensity*cm3/g << " g/cm^3" << G4endl;
153 
154  // Testing Mass
155  G4double ThyroidMass = (ThyroidVol)*ThyroidDensity;
156  G4cout << "Mass of Thyroid = " << ThyroidMass/gram << " g" << G4endl;
157 
158 
159  return physThyroid;
160 }