source: trunk/examples/advanced/human_phantom/src/G4MIRDUpperLargeIntestine.cc@ 1354

Last change on this file since 1354 was 807, checked in by garnier, 17 years ago

update

File size: 5.7 KB
Line 
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// Authors: S. Guatelli and M. G. Pia, INFN Genova, Italy
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.
33//
34#include "G4MIRDUpperLargeIntestine.hh"
35
36#include "globals.hh"
37#include "G4SDManager.hh"
38#include "G4VisAttributes.hh"
39#include "G4EllipticalTube.hh"
40#include "G4UnionSolid.hh"
41#include "G4RotationMatrix.hh"
42#include "G4ThreeVector.hh"
43#include "G4VPhysicalVolume.hh"
44#include "G4PVPlacement.hh"
45#include "G4LogicalVolume.hh"
46#include "G4HumanPhantomMaterial.hh"
47#include "G4HumanPhantomColour.hh"
48
49G4MIRDUpperLargeIntestine::G4MIRDUpperLargeIntestine()
50{
51}
52
53G4MIRDUpperLargeIntestine::~G4MIRDUpperLargeIntestine()
54{
55}
56
57G4VPhysicalVolume* G4MIRDUpperLargeIntestine::Construct(const G4String& volumeName,
58 G4VPhysicalVolume* mother,
59 const G4String& colourName
60 , G4bool wireFrame,G4bool sensitivity)
61{
62 G4cout << "Construct " << volumeName<< G4endl;
63
64 G4HumanPhantomMaterial* material = new G4HumanPhantomMaterial();
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.50 *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.50 * 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 // Sensitive Body Part
104 if (sensitivity==true)
105 {
106 G4SDManager* SDman = G4SDManager::GetSDMpointer();
107 logicUpperLargeIntestine->SetSensitiveDetector( SDman->FindSensitiveDetector("BodyPartSD") );
108 }
109
110 // Visualization Attributes
111 // G4VisAttributes* UpperLargeIntestineVisAtt = new G4VisAttributes(G4Colour(1.0,1.0,0.0));
112 G4HumanPhantomColour* colourPointer = new G4HumanPhantomColour();
113 G4Colour colour = colourPointer -> GetColour(colourName);
114 G4VisAttributes* UpperLargeIntestineVisAtt = new G4VisAttributes(colour);
115 UpperLargeIntestineVisAtt->SetForceSolid(wireFrame);
116 logicUpperLargeIntestine->SetVisAttributes(UpperLargeIntestineVisAtt);
117
118 G4cout << "UpperLargeIntestine created !!!!!!" << G4endl;
119
120 // Testing UpperLargeIntestine Volume
121 G4double UpperLargeIntestineVol = logicUpperLargeIntestine->GetSolid()->GetCubicVolume();
122 G4cout << "Volume of UpperLargeIntestine = " << UpperLargeIntestineVol/cm3 << " cm^3" << G4endl;
123
124 // Testing UpperLargeIntestine Material
125 G4String UpperLargeIntestineMat = logicUpperLargeIntestine->GetMaterial()->GetName();
126 G4cout << "Material of UpperLargeIntestine = " << UpperLargeIntestineMat << G4endl;
127
128 // Testing Density
129 G4double UpperLargeIntestineDensity = logicUpperLargeIntestine->GetMaterial()->GetDensity();
130 G4cout << "Density of Material = " << UpperLargeIntestineDensity*cm3/g << " g/cm^3" << G4endl;
131
132 // Testing Mass
133 G4double UpperLargeIntestineMass = (UpperLargeIntestineVol)*UpperLargeIntestineDensity;
134 G4cout << "Mass of UpperLargeIntestine = " << UpperLargeIntestineMass/gram << " g" << G4endl;
135
136
137 return physUpperLargeIntestine;
138}
Note: See TracBrowser for help on using the repository browser.