Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // Previous authors: G. Guerrieri, S. Guatelli 27 // Authors (since 2007): S. Guatelli, Universi 28 // 29 // 30 #include "G4MIRDLiver.hh" 31 #include "globals.hh" 32 #include "G4SystemOfUnits.hh" 33 #include "G4SDManager.hh" 34 #include "G4VisAttributes.hh" 35 #include "G4HumanPhantomMaterial.hh" 36 #include "G4SDManager.hh" 37 #include "G4PVPlacement.hh" 38 #include "G4SubtractionSolid.hh" 39 #include "G4Ellipsoid.hh" 40 #include "G4ThreeVector.hh" 41 #include "G4VPhysicalVolume.hh" 42 #include "G4RotationMatrix.hh" 43 #include "G4Material.hh" 44 #include "G4EllipticalTube.hh" 45 #include "G4Box.hh" 46 #include "G4HumanPhantomColour.hh" 47 #include <cmath> 48 49 G4VPhysicalVolume* G4MIRDLiver::Construct(cons 50 const G4String& colourName, G4bool 51 { 52 53 G4cout << "Construct " << volumeName <<" wit 54 auto* material = new G4HumanPhantomMaterial( 55 auto* soft = material -> GetMaterial("soft_t 56 delete material; 57 58 G4double dx= 14.19 *cm; //a 59 G4double dy= 7.84 *cm; //b 60 G4double dz= 7.21* cm; //(z2-z1)/2 61 62 auto* firstLiver = new G4EllipticalTube("Fir 63 64 G4double xx = 20.00 * cm; 65 G4double yy = 50.00 * cm; 66 G4double zz = 50.00 *cm; 67 68 auto* subtrLiver = new G4Box("SubtrLiver", x 69 70 auto* rm_relative = new G4RotationMatrix(); 71 rm_relative -> rotateY(32.* degree); 72 rm_relative -> rotateZ(40.9* degree); 73 74 // G4double aa = (1.00/31.51); 75 // G4double bb = (1.00/44.75); 76 // G4double cc = (-1.00/38.76); 77 // G4cout<< aa << " "<< bb << " "<<cc<< G4e 78 79 // G4double dd = sqrt(aa*aa + bb*bb + cc*cc 80 // G4cout<< "dd" << dd << G4endl; 81 // G4cout << aa/dd << "" << bb/dd << " "<< 82 // G4cout << (std::atan(1.42))/deg << G4end 83 84 auto* liver = new G4SubtractionSolid("Liver" 85 firstLiver,subtrLiver, 86 rm_relative, 87 G4ThreeVector(10.0*cm,0.0*cm, 88 89 auto* logicLiver = new G4LogicalVolume(liver 90 soft, 91 "LiverVolume", 92 nullptr, nullptr, nullptr); 93 94 // Define rotation and position here! 95 auto* rm = new G4RotationMatrix(); 96 rm->rotateX(180.*degree); 97 G4VPhysicalVolume* physLiver = new G4PVPlace 98 "physicalLiver", 99 logicLiver, 100 mother, 101 false, 102 0,true); 103 104 // Visualization Attributes 105 auto* colourPointer = new G4HumanPhantomColo 106 G4Colour colour = colourPointer -> GetColour 107 auto* LiverVisAtt = new G4VisAttributes(colo 108 LiverVisAtt->SetForceSolid(wireFrame); 109 logicLiver->SetVisAttributes(LiverVisAtt); 110 111 G4cout << "Liver created !!!!!!" << G4endl; 112 113 // Testing Liver Volume 114 G4double LiverVol = logicLiver->GetSolid()-> 115 G4cout << "Volume of Liver = " << LiverVol/c 116 117 // Testing Liver Material 118 G4String LiverMat = logicLiver->GetMaterial( 119 G4cout << "Material of Liver = " << LiverMat 120 121 // Testing Density 122 G4double LiverDensity = logicLiver->GetMater 123 G4cout << "Density of Material = " << LiverD 124 125 // Testing Mass 126 G4double LiverMass = (LiverVol)*LiverDensity 127 G4cout << "Mass of Liver = " << LiverMass/gr 128 129 return physLiver; 130 } 131