G4-DESCSS/src/G4MIRDLiver.cpp

96 lines
3.5 KiB
C++

#include "G4HumanPhantomColour.h"
#include "G4HumanPhantomMaterial.h"
#include "G4MIRDLiver.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 "G4VPhysicalVolume.hh"
#include "G4VisAttributes.hh"
#include "globals.hh"
#include <cmath>
G4MIRDLiver::G4MIRDLiver() {}
G4MIRDLiver::~G4MIRDLiver() {}
G4VPhysicalVolume* G4MIRDLiver::Construct(const G4String& volumeName, G4VPhysicalVolume* mother,
const G4String& colourName, G4bool wireFrame, G4bool) {
G4cout << "Construct " << volumeName << " with mother " << mother->GetName() << G4endl;
G4HumanPhantomMaterial* material = new G4HumanPhantomMaterial();
G4Material* soft = material->GetMaterial("soft_tissue");
delete material;
G4double dx = 14.19 * cm; // a
G4double dy = 7.84 * cm; // b
G4double dz = 7.21 * cm; //(z2-z1)/2
G4EllipticalTube* firstLiver = new G4EllipticalTube("FirstLiver", dx, dy, dz);
G4double xx = 20.00 * cm;
G4double yy = 50.00 * cm;
G4double zz = 50.00 * cm;
G4Box* subtrLiver = new G4Box("SubtrLiver", xx / 2., yy / 2., zz / 2.);
G4RotationMatrix* rm_relative = new G4RotationMatrix();
rm_relative->rotateY(32. * degree);
rm_relative->rotateZ(40.9 * degree);
// G4double aa = (1.00/31.51);
// G4double bb = (1.00/44.75);
// G4double cc = (-1.00/38.76);
// G4cout<< aa << " "<< bb << " "<<cc<< G4endl;
// G4double dd = sqrt(aa*aa + bb*bb + cc*cc);
// G4cout<< "dd" << dd << G4endl;
// G4cout << aa/dd << "" << bb/dd << " "<< cc/dd <<G4endl;
// G4cout << (std::atan(1.42))/deg << G4endl;
G4SubtractionSolid* liver = new G4SubtractionSolid("Liver", firstLiver, subtrLiver, rm_relative,
G4ThreeVector(10.0 * cm, 0.0 * cm, 0.0 * cm));
G4LogicalVolume* logicLiver = new G4LogicalVolume(liver, soft, "logical" + volumeName, 0, 0, 0);
// Define rotation and position here!
G4RotationMatrix* rm = new G4RotationMatrix();
rm->rotateX(180. * degree);
G4VPhysicalVolume* physLiver = new G4PVPlacement(rm, G4ThreeVector(0. * cm, 0. * cm, 0. * cm), "physicalLiver",
logicLiver, mother, false, 0, true);
// Visualization Attributes
G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
G4Colour colour = colourPointer->GetColour(colourName);
G4VisAttributes* LiverVisAtt = new G4VisAttributes(colour);
LiverVisAtt->SetForceSolid(wireFrame);
logicLiver->SetVisAttributes(LiverVisAtt);
G4cout << "Liver created !!!!!!" << G4endl;
// Testing Liver Volume
G4double LiverVol = logicLiver->GetSolid()->GetCubicVolume();
G4cout << "Volume of Liver = " << LiverVol / cm3 << " cm^3" << G4endl;
// Testing Liver Material
G4String LiverMat = logicLiver->GetMaterial()->GetName();
G4cout << "Material of Liver = " << LiverMat << G4endl;
// Testing Density
G4double LiverDensity = logicLiver->GetMaterial()->GetDensity();
G4cout << "Density of Material = " << LiverDensity * cm3 / g << " g/cm^3" << G4endl;
// Testing Mass
G4double LiverMass = (LiverVol)*LiverDensity;
G4cout << "Mass of Liver = " << LiverMass / gram << " g" << G4endl;
return physLiver;
}