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

#include <G4MIRDRibCage.hh>

Inheritance diagram for G4MIRDRibCage:
G4VOrgan

Public Member Functions

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

Detailed Description

Definition at line 43 of file G4MIRDRibCage.hh.

Constructor & Destructor Documentation

G4MIRDRibCage::G4MIRDRibCage ( )

Definition at line 48 of file G4MIRDRibCage.cc.

49 {
50 }
G4MIRDRibCage::~G4MIRDRibCage ( )

Definition at line 52 of file G4MIRDRibCage.cc.

53 {
54 }

Member Function Documentation

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

Implements G4VOrgan.

Definition at line 57 of file G4MIRDRibCage.cc.

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

59 {
61 
62  G4cout<<"Construct "<<volumeName<<" with mother volume "<<mother->GetName()<<G4endl;
63 
64  G4Material* skeleton = material -> GetMaterial("skeleton");
65  G4Material* soft = material -> GetMaterial("soft_tissue");
66 
67  delete material;
68 
69  G4double dx= 17. *cm; // a2
70  G4double dy= 9.8 * cm; //b2
71  G4double thickness= 32.4 * cm; // z2/2 of cage
72 
73  G4EllipticalTube* outCage = new G4EllipticalTube("outCage",dx, dy, thickness/2.);
74 
75  dx = 16.4 * cm; // a1
76  dy = 9.2 * cm; // b1
77  G4double dz = 34. *cm; // z2/2
78 
79  G4EllipticalTube* inCage = new G4EllipticalTube("inCage",dx, dy, dz/2.);
80 
81  G4SubtractionSolid* cage = new G4SubtractionSolid("Cage",
82  outCage,
83  inCage, 0, G4ThreeVector(0.*cm, 0.*cm, 0. * cm));
84 
85 
86  G4LogicalVolume* logicRibCage = new G4LogicalVolume(cage, soft, "logicalCage", 0, 0, 0);
87 
88  G4VPhysicalVolume* physRibCage = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, thickness/2. + 0.1 * cm),
89  // with respect to the trunk
90  "physicalRibCage",
91  logicRibCage,
92  mother,
93  false,
94  0, true);
95 
96 
97  G4double xx = 17.*cm;
98  G4double yy = 9.8*cm;
99  G4double ribThickness = 1.4*cm;
100  G4EllipticalTube* rib_out = new G4EllipticalTube("rib_out",xx, yy, ribThickness/2.);
101 
102  xx = 16.5 *cm;
103  yy = 9.3 * cm;
104  G4double zz = 1.5 * cm;
105  G4EllipticalTube* rib_in = new G4EllipticalTube("rib_in",xx, yy, zz/2.);
106  G4SubtractionSolid* rib = new G4SubtractionSolid("rib",rib_out, rib_in);
107 
108  G4LogicalVolume* logicRib= new G4LogicalVolume(rib, skeleton, "logical" + volumeName, 0, 0, 0);
109 
110  physRib1 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (- 32.2*cm/2. + 0.8 *cm)),
111  // with respect to the trunk
112  "physicalRib",
113  logicRib,
114  physRibCage,
115  false,
116  0, true);
117 
118  physRib2 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, ( - 32.2*cm/2. + 0.8 *cm + 2.8 *cm)),
119  // with respect to the trunk
120  "physicalRib",
121  logicRib,
122  physRibCage,
123  false,
124  0, true);
125 
126  physRib3 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8 * cm + 5.6 *cm)),
127  // with respect to the trunk
128  "physicalRib",
129  logicRib,
130  physRibCage,
131  false,
132  0, true);
133 
134  physRib4 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8 * cm + 8.4 *cm)),
135  // with respect to the trunk
136  "physicalRib",
137  logicRib,
138  physRibCage,
139  false,
140  0, true);
141 
142  physRib5 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8 * cm + 11.2 *cm)),
143  // with respect to the trunk
144  "physicalRib",
145  logicRib,
146  physRibCage,
147  false,
148  0, true);
149 
150  physRib6 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8 * cm + 14. *cm)),
151  // with respect to the trunk
152  "physicalRib",
153  logicRib,
154  physRibCage,
155  false,
156  0, true);
157 
158  physRib7 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8 *cm + 16.8 *cm)),
159  // with respect to the trunk
160  "physicalRib",
161  logicRib,
162  physRibCage,
163  false,
164  0, true);
165 
166  physRib8 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8 *cm + 19.6 *cm)),
167  // with respect to the trunk
168  "physicalRib",
169  logicRib,
170  physRibCage,
171  false,
172  0, true);
173 
174  physRib9 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8*cm + 22.4 *cm)),
175  // with respect to the trunk
176  "physicalRib",
177  logicRib,
178  physRibCage,
179  false,
180  0, true);
181 
182  physRib10 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8*cm + 25.2 *cm)),
183  // with respect to the trunk
184  "physicalRib",
185  logicRib,
186  physRibCage,
187  false,
188  0, true);
189 
190  physRib11 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8*cm + 28. *cm)),
191  // with respect to the trunk
192  "physicalRib",
193  logicRib,
194  physRibCage,
195  false,
196  0, true);
197 
198  physRib12 = new G4PVPlacement(0,G4ThreeVector(0.0, 0.0, (-thickness/2. + 0.8*cm + 30.8 *cm)),
199  // with respect to the trunk
200  "physicalRib",
201  logicRib,
202  physRibCage,
203  false,
204  0, true);
205 
206  // Visualization Attributes
207  logicRibCage -> SetVisAttributes(G4VisAttributes::Invisible);
208 
209  //G4VisAttributes* RibCageVisAtt = new G4VisAttributes(G4Colour(0.46,0.53,0.6));
210 
211  G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
212  G4Colour colour = colourPointer -> GetColour(colourName);
213  G4VisAttributes* RibCageVisAtt = new G4VisAttributes(colour);
214  RibCageVisAtt->SetForceSolid(wireFrame);
215  logicRib->SetVisAttributes(RibCageVisAtt);
216 
217  G4cout << "RibCage created !!!!!!" << G4endl;
218  // Testing Pelvis Volume
219  G4double RibCageVol = logicRib->GetSolid()->GetCubicVolume();
220  G4cout << "Volume of RibCage = " << ((RibCageVol)*12.)/cm3 << " cm^3" << G4endl;
221 
222  // Testing RibCage Material
223  G4String RibCageMat = logicRib->GetMaterial()->GetName();
224  G4cout << "Material of RibCage = " << RibCageMat << G4endl;
225 
226  // Testing Density
227  G4double RibCageDensity = logicRib->GetMaterial()->GetDensity();
228  G4cout << "Density of Material = " << RibCageDensity*cm3/g << " g/cm^3" << G4endl;
229 
230  // Testing Mass
231  G4double RibCageMass = (RibCageVol)* RibCageDensity * 12;// 12 is the total number of ribs;
232  G4cout << "Mass of RibCage = " << (RibCageMass)/gram << " g" << G4endl;
233 
234  return physRibCage;
235 }
CLHEP::Hep3Vector G4ThreeVector
G4Material * GetMaterial() const
const G4String & GetName() const
Definition: G4Material.hh:176
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
static const G4VisAttributes Invisible
#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: