Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4MIRDThyroid Class Reference

#include <G4MIRDThyroid.hh>

Inheritance diagram for G4MIRDThyroid:
G4VOrgan

Public Member Functions

 G4MIRDThyroid ()
 
 ~G4MIRDThyroid ()
 
G4VPhysicalVolumeConstruct (const G4String &, G4VPhysicalVolume *, const G4String &, G4bool, G4bool)
 
- Public Member Functions inherited from G4VOrgan
 G4VOrgan ()
 
virtual ~G4VOrgan ()
 

Detailed Description

Definition at line 42 of file G4MIRDThyroid.hh.

Constructor & Destructor Documentation

G4MIRDThyroid::G4MIRDThyroid ( )

Definition at line 51 of file G4MIRDThyroid.cc.

52 {
53 }
G4MIRDThyroid::~G4MIRDThyroid ( )

Definition at line 55 of file G4MIRDThyroid.cc.

56 {
57 }

Member Function Documentation

G4VPhysicalVolume * G4MIRDThyroid::Construct ( const G4String volumeName,
G4VPhysicalVolume mother,
const G4String colourName,
G4bool  wireFrame,
G4bool   
)
virtual

Implements G4VOrgan.

Definition at line 60 of file G4MIRDThyroid.cc.

References python.hepunit::cm, python.hepunit::cm3, python.hepunit::degree, g(), G4cout, G4endl, G4VSolid::GetCubicVolume(), G4Material::GetDensity(), G4LogicalVolume::GetMaterial(), G4VPhysicalVolume::GetName(), G4Material::GetName(), G4LogicalVolume::GetSolid(), python.hepunit::gram, eplot::material, CLHEP::HepRotation::rotateZ(), G4VisAttributes::SetForceSolid(), G4LogicalVolume::SetVisAttributes(), and z.

62 {
63 
64 
65  G4cout << "Construct " << volumeName <<" with mother "<<mother->GetName()<<G4endl;
66 
68  G4Material* soft = material -> GetMaterial("soft_tissue");
69  delete material;
70 
71  G4double z= 4.20*cm; //c thickness = c,
72  G4double rmin= 0. * cm;
73  G4double rmax= 1.85 *cm; //Rmax
74  G4double startphi = 0. * degree;
75  G4double deltaphi= 180. * degree; // y< y0
76 
77  G4Tubs* LobOfThyroidOut = new G4Tubs("LobOfThyroidOut",
78  rmin, rmax,z/2.,
79  startphi, deltaphi);
80 
81  z= 4.50*cm; // c thickness + something
82  rmax= 0.83 * cm; //r
83  deltaphi= 360. * degree;
84  G4Tubs* LobOfThyroidIn = new G4Tubs("LobOfThyroidIn",
85  rmin, rmax,z/2.,
86  startphi, deltaphi);
87 
88  G4double xx = 3.72*cm;
89  G4double yy= 3.72*cm;
90  G4double zz= 20.00*cm;
91  G4Box* SubtrThyroid = new G4Box("SubtrThyroid",
92  xx/2., yy/2., zz/2.);
93 
94  // subtraction of the two tubs
95  G4SubtractionSolid* FirstThyroid = new G4SubtractionSolid("FirstThyroid",
96  LobOfThyroidOut,
97  LobOfThyroidIn);
98 
99  G4RotationMatrix* relative_matrix = new G4RotationMatrix();
100  relative_matrix -> rotateX(-50.* degree);
101 
102  G4SubtractionSolid* SecondThyroid = new G4SubtractionSolid("SecondThyroid",
103  FirstThyroid,
104  SubtrThyroid,
105  relative_matrix,
106  G4ThreeVector(0.0 *cm,0.0 *cm, 4.20*cm));
107 
108  G4RotationMatrix* relative_matrix_2 = new G4RotationMatrix();
109  relative_matrix_2 -> rotateX(50.* degree);
110 
111  G4SubtractionSolid* thyroid = new G4SubtractionSolid("SecondThyroid",
112  SecondThyroid,
113  SubtrThyroid,
114  relative_matrix_2,
115  G4ThreeVector(0.0 *cm,0.0 *cm, -5.40*cm));
116 
117 
118 
119  G4LogicalVolume* logicThyroid = new G4LogicalVolume(thyroid, soft,
120  "ThyroidVolume",
121  0, 0, 0);
122 
124  rm->rotateZ(180.*degree);
125  G4VPhysicalVolume* physThyroid = new G4PVPlacement(rm,
126  // G4ThreeVector(0.0*cm,-3.91*cm, -5.925*cm),//y0
127  G4ThreeVector(0.0*cm,-3.91*cm, -5.65*cm),//y0
128  "physicalThyroid",
129  logicThyroid,
130  mother,
131  false,
132  0,true);
133 
134 
135  // Visualization Attributes
136  G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
137  G4Colour colour = colourPointer -> GetColour(colourName);
138  G4VisAttributes* ThyroidVisAtt = new G4VisAttributes(colour);
139  ThyroidVisAtt->SetForceSolid(wireFrame);
140  logicThyroid->SetVisAttributes(ThyroidVisAtt);
141 
142  G4cout << "Thyroid created !!!!!!" << G4endl;
143 
144  // Testing Thyroid Volume
145  G4double ThyroidVol = logicThyroid->GetSolid()->GetCubicVolume();
146  G4cout << "Volume of Thyroid = " << ThyroidVol/cm3 << " cm^3" << G4endl;
147 
148  // Testing Thyroid Material
149  G4String ThyroidMat = logicThyroid->GetMaterial()->GetName();
150  G4cout << "Material of Thyroid = " << ThyroidMat << G4endl;
151 
152  // Testing Density
153  G4double ThyroidDensity = logicThyroid->GetMaterial()->GetDensity();
154  G4cout << "Density of Material = " << ThyroidDensity*cm3/g << " g/cm^3" << G4endl;
155 
156  // Testing Mass
157  G4double ThyroidMass = (ThyroidVol)*ThyroidDensity;
158  G4cout << "Mass of Thyroid = " << ThyroidMass/gram << " g" << G4endl;
159 
160 
161  return physThyroid;
162 }
CLHEP::Hep3Vector G4ThreeVector
CLHEP::HepRotation G4RotationMatrix
G4double z
Definition: TRTMaterials.hh:39
G4Material * GetMaterial() const
Definition: G4Box.hh:63
const G4String & GetName() const
Definition: G4Material.hh:176
Definition: G4Tubs.hh:84
virtual G4double GetCubicVolume()
Definition: G4VSolid.cc:188
G4double GetDensity() const
Definition: G4Material.hh:178
void SetForceSolid(G4bool)
string material
Definition: eplot.py:19
function g(Y1, Y2, PT2)
Definition: hijing1.383.f:5205
G4GLOB_DLL std::ostream G4cout
const G4String & GetName() const
tuple degree
Definition: hepunit.py:69
HepRotation & rotateZ(double delta)
Definition: Rotation.cc:92
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
void SetVisAttributes(const G4VisAttributes *pVA)
G4VSolid * GetSolid() const

The documentation for this class was generated from the following files: