ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4MIRDUpperLargeIntestine.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4MIRDUpperLargeIntestine.cc
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // Previous authors: G. Guerrieri, S. Guatelli and M. G. Pia, INFN Genova, Italy
28 // Authors (since 2007): S. Guatelli, University of Wollongong, Australia
29 //
30 // Contribution: F. Ambroglini INFN Perugia, Italy
31 //
33 
34 #include "globals.hh"
35 #include "G4SystemOfUnits.hh"
36 #include "G4SDManager.hh"
37 #include "G4VisAttributes.hh"
38 #include "G4EllipticalTube.hh"
39 #include "G4UnionSolid.hh"
40 #include "G4RotationMatrix.hh"
41 #include "G4ThreeVector.hh"
42 #include "G4VPhysicalVolume.hh"
43 #include "G4PVPlacement.hh"
44 #include "G4LogicalVolume.hh"
46 #include "G4HumanPhantomColour.hh"
47 
49 {
50 }
51 
53 {
54 }
55 
56 
58  G4VPhysicalVolume* mother,
59  const G4String& colourName
60  , G4bool wireFrame,G4bool)
61 {
62  G4cout<<"Construct "<<volumeName<<" with mother volume "<<mother->GetName()<<G4endl;
63 
65  G4Material* soft = material -> GetMaterial("soft_tissue");
66  delete material;
67 
68  G4double dx = 2.5 * cm; // aU
69  G4double dy = 2.5* cm; //bU
70  G4double dz = 4.775 * cm; //dzU
71 
72  G4VSolid* AscendingColonUpperLargeIntestine = new G4EllipticalTube("AscendingColon",dx, dy, dz);
73 
74  dx = 2.5 * cm;//bt
75  dy = 1.5 *cm;//ct
76  dz = 10.5* cm;//x1t
77 
78  G4VSolid* TraverseColonUpperLargeIntestine = new G4EllipticalTube("TraverseColon",dx, dy, dz);
79 
80  G4RotationMatrix* relative_rm = new G4RotationMatrix();
81  relative_rm -> rotateX(90. * degree);
82  relative_rm -> rotateZ(0. * degree);
83  relative_rm -> rotateY(90. * degree);
84  G4UnionSolid* upperLargeIntestine = new G4UnionSolid("UpperLargeIntestine",
85  AscendingColonUpperLargeIntestine,
86  TraverseColonUpperLargeIntestine,
87  relative_rm,
88  G4ThreeVector(8.0 *cm, 0.0,6.275 * cm)); //,0,dzU + ct transverse
89 
90 
91  G4LogicalVolume* logicUpperLargeIntestine = new G4LogicalVolume(upperLargeIntestine, soft,
92  "logical" + volumeName,
93  0, 0, 0);
94 
95  G4VPhysicalVolume* physUpperLargeIntestine = new G4PVPlacement(0,
96  G4ThreeVector(-8.0 * cm, -2.36 *cm,-15.775 *cm),
97  "physicalUpperLargeIntestine", //xo, yo, zo ascending colon
98  logicUpperLargeIntestine,
99  mother,
100  false,
101  0, true);
102 
103 
104 
105  // Visualization Attributes
106  // G4VisAttributes* UpperLargeIntestineVisAtt = new G4VisAttributes(G4Colour(1.0,1.0,0.0));
107  G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
108  G4Colour colour = colourPointer -> GetColour(colourName);
109  G4VisAttributes* UpperLargeIntestineVisAtt = new G4VisAttributes(colour);
110  UpperLargeIntestineVisAtt->SetForceSolid(wireFrame);
111  logicUpperLargeIntestine->SetVisAttributes(UpperLargeIntestineVisAtt);
112 
113  G4cout << "UpperLargeIntestine created !!!!!!" << G4endl;
114 
115  // Testing UpperLargeIntestine Volume
116  G4double UpperLargeIntestineVol = logicUpperLargeIntestine->GetSolid()->GetCubicVolume();
117  G4cout << "Volume of UpperLargeIntestine = " << UpperLargeIntestineVol/cm3 << " cm^3" << G4endl;
118 
119  // Testing UpperLargeIntestine Material
120  G4String UpperLargeIntestineMat = logicUpperLargeIntestine->GetMaterial()->GetName();
121  G4cout << "Material of UpperLargeIntestine = " << UpperLargeIntestineMat << G4endl;
122 
123  // Testing Density
124  G4double UpperLargeIntestineDensity = logicUpperLargeIntestine->GetMaterial()->GetDensity();
125  G4cout << "Density of Material = " << UpperLargeIntestineDensity*cm3/g << " g/cm^3" << G4endl;
126 
127  // Testing Mass
128  G4double UpperLargeIntestineMass = (UpperLargeIntestineVol)*UpperLargeIntestineDensity;
129  G4cout << "Mass of UpperLargeIntestine = " << UpperLargeIntestineMass/gram << " g" << G4endl;
130 
131 
132  return physUpperLargeIntestine;
133 }