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 "G4MIRDMiddleLowerSpine.hh" 31 32 #include "globals.hh" 33 #include "G4SystemOfUnits.hh" 34 #include "G4SDManager.hh" 35 #include "G4VisAttributes.hh" 36 #include "G4HumanPhantomMaterial.hh" 37 #include "G4EllipticalTube.hh" 38 #include "G4RotationMatrix.hh" 39 #include "G4ThreeVector.hh" 40 #include "G4VPhysicalVolume.hh" 41 #include "G4PVPlacement.hh" 42 #include "G4UnionSolid.hh" 43 #include "G4HumanPhantomColour.hh" 44 45 G4VPhysicalVolume* G4MIRDMiddleLowerSpine::Con 46 G4VPhysicalVolume* mother, 47 const G4String& colourName 48 , G4bool wireFrame, G4bool ) 49 { 50 auto* material = new G4HumanPhantomMaterial( 51 52 G4cout<<"Construct "<<volumeName<<" with mot 53 54 auto* skeleton = material -> GetMaterial("sk 55 56 delete material; 57 58 G4double dx = 2. *cm; 59 G4double dy = 2.5 *cm; 60 G4double dz = 24. *cm; 61 62 auto* middleLowerSpine = new G4EllipticalTub 63 64 auto* logicMiddleLowerSpine = new G4LogicalV 65 "logical" + volumeName, 66 nullptr, nullptr, nullptr); 67 // Define rotation and position here! 68 G4VPhysicalVolume* physMiddleLowerSpine = ne 69 "physicalMiddleLowerSpine" 70 logicMiddleLowerSpine, 71 mother, 72 false, 73 0, true); 74 75 76 // Visualization Attributes 77 // G4VisAttributes* MiddleLowerSpineVisAtt = 78 79 auto* colourPointer = new G4HumanPhantomColo 80 G4Colour colour = colourPointer -> GetColour 81 auto* MiddleLowerSpineVisAtt = new G4VisAttr 82 MiddleLowerSpineVisAtt->SetForceSolid(wireFr 83 logicMiddleLowerSpine->SetVisAttributes(Midd 84 85 G4cout << "MiddleLowerSpine created !!!!!!" 86 87 // Testing MiddleLowerSpine Volume 88 G4double MiddleLowerSpineVol = logicMiddleLo 89 G4cout << "Volume of MiddleLowerSpine = " << 90 91 // Testing MiddleLowerSpine Material 92 G4String MiddleLowerSpineMat = logicMiddleLo 93 G4cout << "Material of MiddleLowerSpine = " 94 95 // Testing Density 96 G4double MiddleLowerSpineDensity = logicMidd 97 G4cout << "Density of Material = " << Middle 98 99 // Testing Mass 100 G4double MiddleLowerSpineMass = (MiddleLower 101 G4cout << "Mass of MiddleLowerSpine = " << M 102 103 return physMiddleLowerSpine; 104 } 105