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

#include <G4MIRDPelvis.hh>

Inheritance diagram for G4MIRDPelvis:
G4VOrgan

Public Member Functions

 G4MIRDPelvis ()
 
 ~G4MIRDPelvis ()
 
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 G4MIRDPelvis.hh.

Constructor & Destructor Documentation

G4MIRDPelvis::G4MIRDPelvis ( )

Definition at line 52 of file G4MIRDPelvis.cc.

53 {
54 }
G4MIRDPelvis::~G4MIRDPelvis ( )

Definition at line 56 of file G4MIRDPelvis.cc.

57 {
58 
59 }

Member Function Documentation

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

Implements G4VOrgan.

Definition at line 62 of file G4MIRDPelvis.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, eplot::material, G4VisAttributes::SetForceSolid(), G4LogicalVolume::SetVisAttributes(), test::x, and z.

64 {
66 
67  G4cout<<"Construct "<<volumeName<<" with mother volume "<<mother->GetName()<<G4endl;
68 
69  G4Material* skeleton = material -> GetMaterial("skeleton");
70 
71  delete material;
72  /*
73  G4double dx= 10.35 * cm;//12. *cm; // a2
74  G4double dy= 11.76 * cm;//12. * cm; // b2
75  G4double dz= 9.915 * cm; // z2/2
76 
77  G4VSolid* outPelvis = new G4EllipticalTube("OutPelvis",dx, dy, dz);
78 
79  G4double dx_in = 9.75 * cm;//11.3 * cm; // a1
80  G4double dy_in = 11.07 *cm; //11.3* cm; //b1
81  G4double dz_in = 10. * cm;//11.0 *cm; // z2/2
82 
83  */
84  G4double dx= 12. *cm; // a2
85  G4double dy= 12. * cm; //b2
86  G4double dz= 11. * cm; // z2/2
87 
88  G4VSolid* outPelvis = new G4EllipticalTube("OutPelvis",dx, dy, dz);
89 
90  dx = 11.3 * cm; // a1
91  dy = 11.3* cm; // b1
92  dz = 12.0 *cm; // z2/2
93 
94  G4VSolid* inPelvis = new G4EllipticalTube("InPelvis",dx, dy, dz);
95 
96  G4double x = 28. * cm; // a2 * 2
97  G4double y = 28. * cm; //b2*2
98  G4double z = 24. *cm; // z2
99 
100  G4VSolid* subPelvis = new G4Box("SubtrPelvis", x/2., y/2., z/2.);
101 
102 
103 
104  G4SubtractionSolid* firstPelvis = new G4SubtractionSolid("FirstPelvis",
105  outPelvis,
106  inPelvis, 0, G4ThreeVector(0.*cm, -0.8 *cm, 0. * cm));
107 
108 
109  G4SubtractionSolid* secondPelvis = new G4SubtractionSolid("SecondPelvis",
110  firstPelvis,
111  subPelvis, 0,
112  G4ThreeVector(0.0,
113  -14. * cm, 0.*cm));
114  // half of the y size of the box
115 
116 
117  G4SubtractionSolid* pelvis = new G4SubtractionSolid("Pelvis", secondPelvis, subPelvis,
118  0,
119  G4ThreeVector(0.0,
120  22. * cm, -9. *cm));
121 
122 
123  G4LogicalVolume* logicPelvis = new G4LogicalVolume(pelvis, skeleton,
124  "logical" + volumeName, 0, 0, 0);
125 
126 
127  G4VPhysicalVolume* physPelvis = new G4PVPlacement(0,G4ThreeVector(0.0, -3. * cm,-24. * cm),// 0, y02, z position
128  // with respect to the trunk
129  "physicalPelvis",
130  logicPelvis,
131  mother,
132  false,
133  0, true);
134 
135 
136 
137  // Visualization Attributes
138  // G4VisAttributes* PelvisVisAtt = new G4VisAttributes(G4Colour(0.46,0.53,0.6));
139 
140  G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
141  G4Colour colour = colourPointer -> GetColour(colourName);
142  G4VisAttributes* PelvisVisAtt = new G4VisAttributes(colour);
143  PelvisVisAtt->SetForceSolid(wireFrame);
144  logicPelvis->SetVisAttributes(PelvisVisAtt);
145 
146  G4cout << "Pelvis created !!!!!!" << G4endl;
147 
148  // Testing Pelvis Volume
149  G4double PelvisVol = logicPelvis->GetSolid()->GetCubicVolume();
150  G4cout << "Volume of Pelvis = " << PelvisVol/cm3 << " cm^3" << G4endl;
151 
152  // Testing Pelvis Material
153  G4String PelvisMat = logicPelvis->GetMaterial()->GetName();
154  G4cout << "Material of Pelvis = " << PelvisMat << G4endl;
155 
156  // Testing Density
157  G4double PelvisDensity = logicPelvis->GetMaterial()->GetDensity();
158  G4cout << "Density of Material = " << PelvisDensity*cm3/g << " g/cm^3" << G4endl;
159 
160  // Testing Mass
161  G4double PelvisMass = (PelvisVol)*PelvisDensity;
162  G4cout << "Mass of Pelvis = " << PelvisMass/gram << " g" << G4endl;
163 
164 
165  return physPelvis;
166 }
CLHEP::Hep3Vector G4ThreeVector
G4double z
Definition: TRTMaterials.hh:39
G4Material * GetMaterial() const
Definition: G4Box.hh:63
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
#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: