Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // Previous authors: G. Guerrieri, S. Guatelli << 26 // Authors: S. Guatelli , M. G. Pia, INFN Genova and F. Ambroglini INFN Perugia, Italy 27 // Authors (since 2007): S. Guatelli, Universi << 28 // 27 // >> 28 // Based on code developed by the undergraduate student G. Guerrieri >> 29 // Note: this is a preliminary beta-version of the code; an improved >> 30 // version will be distributed in the next Geant4 public release, compliant >> 31 // with the design in a forthcoming publication, and subject to a >> 32 // design and code review. 29 // 33 // 30 #include "G4MIRDMaleGenitalia.hh" 34 #include "G4MIRDMaleGenitalia.hh" 31 35 32 #include "globals.hh" 36 #include "globals.hh" 33 #include "G4SystemOfUnits.hh" 37 #include "G4SystemOfUnits.hh" 34 #include "G4SDManager.hh" 38 #include "G4SDManager.hh" 35 #include "G4VisAttributes.hh" 39 #include "G4VisAttributes.hh" 36 #include "G4Ellipsoid.hh" 40 #include "G4Ellipsoid.hh" 37 #include "G4ThreeVector.hh" 41 #include "G4ThreeVector.hh" 38 #include "G4VPhysicalVolume.hh" 42 #include "G4VPhysicalVolume.hh" 39 #include "G4RotationMatrix.hh" 43 #include "G4RotationMatrix.hh" 40 #include "G4Material.hh" 44 #include "G4Material.hh" 41 #include "G4LogicalVolume.hh" 45 #include "G4LogicalVolume.hh" 42 #include "G4HumanPhantomMaterial.hh" 46 #include "G4HumanPhantomMaterial.hh" 43 #include "G4VPhysicalVolume.hh" 47 #include "G4VPhysicalVolume.hh" 44 #include "G4PVPlacement.hh" 48 #include "G4PVPlacement.hh" 45 #include "G4UnionSolid.hh" 49 #include "G4UnionSolid.hh" 46 #include "G4HumanPhantomColour.hh" 50 #include "G4HumanPhantomColour.hh" 47 #include "G4Trap.hh" 51 #include "G4Trap.hh" 48 #include "G4Cons.hh" 52 #include "G4Cons.hh" 49 #include "G4SubtractionSolid.hh" 53 #include "G4SubtractionSolid.hh" 50 54 >> 55 G4MIRDMaleGenitalia::G4MIRDMaleGenitalia() >> 56 { >> 57 } >> 58 >> 59 G4MIRDMaleGenitalia::~G4MIRDMaleGenitalia() >> 60 { >> 61 >> 62 } >> 63 >> 64 51 G4VPhysicalVolume* G4MIRDMaleGenitalia::Constr 65 G4VPhysicalVolume* G4MIRDMaleGenitalia::Construct(const G4String& volumeName,G4VPhysicalVolume* mother, 52 const G4String& colourName, G4bo 66 const G4String& colourName, G4bool wireFrame, G4bool) 53 { 67 { 54 G4cout<<"Construct "<<volumeName<<" with mot 68 G4cout<<"Construct "<<volumeName<<" with mother volume "<<mother->GetName()<<G4endl; 55 69 56 auto* material = new G4HumanPhantomMaterial( << 70 G4HumanPhantomMaterial* material = new G4HumanPhantomMaterial(); 57 auto* soft = material -> GetMaterial("soft_t << 71 G4Material* soft = material -> GetMaterial("soft_tissue"); 58 delete material; 72 delete material; 59 73 >> 74 60 G4double pDz=2.4*cm; 75 G4double pDz=2.4*cm; 61 G4double pTheta=0*degree; 76 G4double pTheta=0*degree; 62 G4double pPhi=0*degree; 77 G4double pPhi=0*degree; 63 G4double pDy1=4.76*cm; 78 G4double pDy1=4.76*cm; 64 G4double pDx1=9.52*cm; 79 G4double pDx1=9.52*cm; 65 G4double pDx2=9.52*cm; 80 G4double pDx2=9.52*cm; 66 G4double pAlp1=0*degree; 81 G4double pAlp1=0*degree; 67 G4double pDy2=5*cm; 82 G4double pDy2=5*cm; 68 G4double pDx3=10*cm; 83 G4double pDx3=10*cm; 69 G4double pDx4=10*cm; 84 G4double pDx4=10*cm; 70 G4double pAlp2=0*degree; 85 G4double pAlp2=0*degree; 71 86 72 auto* genitaliaTrap= new G4Trap("GenitaliaTr << 87 G4Trap* genitaliaTrap= new G4Trap("GenitaliaTrap", 73 pDz,pTheta,pPhi,pDy1, 88 pDz,pTheta,pPhi,pDy1, 74 pDx1,pDx2,pAlp1,pDy2, 89 pDx1,pDx2,pAlp1,pDy2, 75 pDx3,pDx4,pAlp2); 90 pDx3,pDx4,pAlp2); 76 91 >> 92 77 G4double rmin1 = 0.* cm; 93 G4double rmin1 = 0.* cm; 78 G4double rmin2 = 0.* cm; 94 G4double rmin2 = 0.* cm; 79 G4double dz= 5 * cm; 95 G4double dz= 5 * cm; 80 G4double rmax1= 9.51 * cm; 96 G4double rmax1= 9.51 * cm; 81 G4double rmax2= 10.01 * cm; 97 G4double rmax2= 10.01 * cm; 82 G4double startphi= 0.* degree; 98 G4double startphi= 0.* degree; 83 G4double deltaphi= 360. * degree; 99 G4double deltaphi= 360. * degree; 84 100 85 auto* genitaliaLegL = new G4Cons("GenitaliaL << 101 G4Cons* genitaliaLegL = new G4Cons("GenitaliaLegL", 86 rmin1, rmax1, 102 rmin1, rmax1, 87 rmin2, rmax2, dz/2., 103 rmin2, rmax2, dz/2., 88 startphi, deltaphi); 104 startphi, deltaphi); 89 105 90 auto* genitaliaLegR = new G4Cons("GenitaliaL << 106 G4Cons* genitaliaLegR = new G4Cons("GenitaliaLegR", 91 rmin1, rmax1, 107 rmin1, rmax1, 92 rmin2, rmax2, dz/2., 108 rmin2, rmax2, dz/2., 93 startphi, deltaphi); 109 startphi, deltaphi); 94 110 95 auto* genitaliaLegs = new G4UnionSolid("Geni << 111 G4UnionSolid* genitaliaLegs = new G4UnionSolid("GenitaliaLegs",genitaliaLegL,genitaliaLegR, 96 nullptr, << 112 0, 97 G4ThreeVector(20.* cm, 0.*cm,0* cm << 113 G4ThreeVector(20.* cm, 0.*cm,0* cm) ); >> 114 98 115 99 116 100 auto* MaleGenitalia = new G4SubtractionSolid << 117 G4SubtractionSolid* MaleGenitalia = new G4SubtractionSolid("MaleGenitalia",genitaliaTrap,genitaliaLegs, 101 nullptr,// << 118 0,// 102 G4ThreeVector(-10.* cm, -5. 119 G4ThreeVector(-10.* cm, -5.*cm,0* cm) ); 103 120 104 121 105 auto* logicMaleGenitalia = new G4LogicalVolu << 122 G4LogicalVolume* logicMaleGenitalia = new G4LogicalVolume(MaleGenitalia, 106 soft, 123 soft, 107 "logical" + volumeName, 124 "logical" + volumeName, 108 nullptr, nullptr, nullptr); << 125 0, 0, 0); 109 126 110 // Define rotation and position here! 127 // Define rotation and position here! 111 G4VPhysicalVolume* physMaleGenitalia = new G << 128 G4VPhysicalVolume* physMaleGenitalia = new G4PVPlacement(0, 112 G4ThreeVector(0*cm,5.*cm, -2. 129 G4ThreeVector(0*cm,5.*cm, -2.4*cm), 113 "physicalMaleGenitalia", 130 "physicalMaleGenitalia", 114 logicMaleGenitalia, 131 logicMaleGenitalia, 115 mother, 132 mother, 116 false, 133 false, 117 0, true); 134 0, true); 118 135 119 // Visualization Attributes 136 // Visualization Attributes 120 //G4VisAttributes* MaleGenitaliaVisAtt = new 137 //G4VisAttributes* MaleGenitaliaVisAtt = new G4VisAttributes(G4Colour(0.85,0.44,0.84)); 121 auto* colourPointer = new G4HumanPhantomColo << 138 G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour(); 122 G4Colour colour = colourPointer -> GetColour 139 G4Colour colour = colourPointer -> GetColour(colourName); 123 delete colourPointer; 140 delete colourPointer; 124 141 125 auto* MaleGenitaliaVisAtt = new G4VisAttribu << 142 G4VisAttributes* MaleGenitaliaVisAtt = new G4VisAttributes(colour); 126 MaleGenitaliaVisAtt->SetForceSolid(wireFrame 143 MaleGenitaliaVisAtt->SetForceSolid(wireFrame); 127 logicMaleGenitalia->SetVisAttributes(MaleGen 144 logicMaleGenitalia->SetVisAttributes(MaleGenitaliaVisAtt); 128 145 129 G4cout << "MaleGenitalia created !!!!!!" << 146 G4cout << "MaleGenitalia created !!!!!!" << G4endl; 130 147 131 // Testing MaleGenitalia Volume 148 // Testing MaleGenitalia Volume 132 G4double MaleGenitaliaVol = logicMaleGenital 149 G4double MaleGenitaliaVol = logicMaleGenitalia->GetSolid()->GetCubicVolume(); 133 G4cout << "Volume of MaleGenitalia = " << Ma 150 G4cout << "Volume of MaleGenitalia = " << MaleGenitaliaVol/cm3 << " cm^3" << G4endl; 134 151 135 // Testing MaleGenitalia Material 152 // Testing MaleGenitalia Material 136 G4String MaleGenitaliaMat = logicMaleGenital 153 G4String MaleGenitaliaMat = logicMaleGenitalia->GetMaterial()->GetName(); 137 G4cout << "Material of MaleGenitalia = " << 154 G4cout << "Material of MaleGenitalia = " << MaleGenitaliaMat << G4endl; 138 155 139 // Testing Density 156 // Testing Density 140 G4double MaleGenitaliaDensity = logicMaleGen 157 G4double MaleGenitaliaDensity = logicMaleGenitalia->GetMaterial()->GetDensity(); 141 G4cout << "Density of Material = " << MaleGe 158 G4cout << "Density of Material = " << MaleGenitaliaDensity*cm3/g << " g/cm^3" << G4endl; 142 159 143 // Testing Mass 160 // Testing Mass 144 G4double MaleGenitaliaMass = (MaleGenitaliaV 161 G4double MaleGenitaliaMass = (MaleGenitaliaVol)*MaleGenitaliaDensity; 145 G4cout << "Mass of MaleGenitalia = " << Male 162 G4cout << "Mass of MaleGenitalia = " << MaleGenitaliaMass/gram << " g" << G4endl; 146 163 147 return physMaleGenitalia; 164 return physMaleGenitalia; 148 } 165 } 149 166