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

#include <G4MIRDSpleen.hh>

Inheritance diagram for G4MIRDSpleen:
G4VOrgan

Public Member Functions

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

Constructor & Destructor Documentation

G4MIRDSpleen::G4MIRDSpleen ( )

Definition at line 51 of file G4MIRDSpleen.cc.

52 {
53 }
G4MIRDSpleen::~G4MIRDSpleen ( )

Definition at line 55 of file G4MIRDSpleen.cc.

56 {
57 
58 }

Member Function Documentation

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

Implements G4VOrgan.

Definition at line 61 of file G4MIRDSpleen.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(), and G4LogicalVolume::SetVisAttributes().

63 {
64 
65  G4cout<<"Construct "<<volumeName<<" with mother volume "<<mother->GetName()<<G4endl;
66 
68  G4Material* soft = material -> GetMaterial("soft_tissue");
69  delete material;
70 
71  G4double ax= 3.5 *cm;
72  G4double by= 2. *cm;
73  G4double cz= 6. * cm;
74 
75  G4Ellipsoid* spleen = new G4Ellipsoid("spleen", ax, by, cz);
76 
77 
78  G4LogicalVolume* logicSpleen = new G4LogicalVolume(spleen, soft,
79  "logical" + volumeName,
80  0, 0, 0);
81 
82  // Define rotation and position here!
83  G4VPhysicalVolume* physSpleen = new G4PVPlacement(0,
84  G4ThreeVector(11. *cm, 3. *cm, 2.*cm), // ztrans = half trunk lenght - z0
85  "physicalSpleen",
86  logicSpleen,
87  mother,
88  false,
89  0, true);
90 
91 
92 
93  // Visualization Attributes
94  // G4VisAttributes* SpleenVisAtt = new G4VisAttributes(G4Colour(0.41,0.41,0.41));
95  G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
96  G4Colour colour = colourPointer -> GetColour(colourName);
97  G4VisAttributes* SpleenVisAtt = new G4VisAttributes(colour);
98  SpleenVisAtt->SetForceSolid(wireFrame);
99  logicSpleen->SetVisAttributes(SpleenVisAtt);
100 
101  G4cout << "Spleen created !!!!!!" << G4endl;
102 
103  // Testing Spleen Volume
104  G4double SpleenVol = logicSpleen->GetSolid()->GetCubicVolume();
105  G4cout << "Volume of Spleen = " << SpleenVol/cm3 << " cm^3" << G4endl;
106 
107  // Testing Spleen Material
108  G4String SpleenMat = logicSpleen->GetMaterial()->GetName();
109  G4cout << "Material of Spleen = " << SpleenMat << G4endl;
110 
111  // Testing Density
112  G4double SpleenDensity = logicSpleen->GetMaterial()->GetDensity();
113  G4cout << "Density of Material = " << SpleenDensity*cm3/g << " g/cm^3" << G4endl;
114 
115  // Testing Mass
116  G4double SpleenMass = (SpleenVol)*SpleenDensity;
117  G4cout << "Mass of Spleen = " << SpleenMass/gram << " g" << G4endl;
118 
119 
120 
121  return physSpleen;
122 }
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
#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: