G4-DESCSS/src/G4MIRDRightAdrenal.cpp

75 lines
2.9 KiB
C++

#include "G4HumanPhantomColour.h"
#include "G4HumanPhantomMaterial.h"
#include "G4MIRDRightAdrenal.h"
#include "G4Box.hh"
#include "G4Ellipsoid.hh"
#include "G4EllipticalTube.hh"
#include "G4Material.hh"
#include "G4PVPlacement.hh"
#include "G4RotationMatrix.hh"
#include "G4SDManager.hh"
#include "G4SubtractionSolid.hh"
#include "G4SystemOfUnits.hh"
#include "G4ThreeVector.hh"
#include "G4UnionSolid.hh"
#include "G4VPhysicalVolume.hh"
#include "G4VisAttributes.hh"
#include "globals.hh"
G4MIRDRightAdrenal::G4MIRDRightAdrenal() {}
G4MIRDRightAdrenal::~G4MIRDRightAdrenal() {}
G4VPhysicalVolume* G4MIRDRightAdrenal::Construct(const G4String& volumeName, G4VPhysicalVolume* mother,
const G4String& colourName, G4bool wireFrame, G4bool) {
G4cout << "Construct " << volumeName << " with mother volume " << mother->GetName() << G4endl;
G4HumanPhantomMaterial* material = new G4HumanPhantomMaterial();
G4Material* soft = material->GetMaterial("soft_tissue");
delete material;
G4double ax = 1.5 * cm; // a
G4double by = 0.5 * cm; // b
G4double cz = 5.0 * cm; // c
G4VSolid* rightAdrenal = new G4Ellipsoid("OneRightAdrenal", ax, by, cz, 0. * cm, cz);
G4LogicalVolume* logicRightAdrenal = new G4LogicalVolume(rightAdrenal, soft, "logical" + volumeName, 0, 0, 0);
G4VPhysicalVolume* physRightAdrenal =
new G4PVPlacement(0,
G4ThreeVector(-4.5 * cm, // xo
6.5 * cm, // yo
3. * cm), // zo
"physicalRightAdrenal", logicRightAdrenal, mother, false, 0, true);
// Visualization Attributes
// G4VisAttributes* RightAdrenalVisAtt = new G4VisAttributes(G4Colour(0.72,0.52,0.04));
G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
G4Colour colour = colourPointer->GetColour(colourName);
G4VisAttributes* RightAdrenalVisAtt = new G4VisAttributes(colour);
RightAdrenalVisAtt->SetForceSolid(wireFrame);
logicRightAdrenal->SetVisAttributes(RightAdrenalVisAtt);
G4cout << "Right RightAdrenal created !!!!!!" << G4endl;
// Testing RightAdrenal Volume
G4double RightAdrenalVol = logicRightAdrenal->GetSolid()->GetCubicVolume();
G4cout << "Volume of RightAdrenal = " << RightAdrenalVol / cm3 << " cm^3" << G4endl;
// Testing RightAdrenal Material
G4String RightAdrenalMat = logicRightAdrenal->GetMaterial()->GetName();
G4cout << "Material of RightAdrenal = " << RightAdrenalMat << G4endl;
// Testing Density
G4double RightAdrenalDensity = logicRightAdrenal->GetMaterial()->GetDensity();
G4cout << "Density of Material = " << RightAdrenalDensity * cm3 / g << " g/cm^3" << G4endl;
// Testing Mass
G4double RightAdrenalMass = (RightAdrenalVol)*RightAdrenalDensity;
G4cout << "Mass of RightAdrenal = " << RightAdrenalMass / gram << " g" << G4endl;
return physRightAdrenal;
}