Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
PhantomConfiguration Class Reference

#include <PhantomConfiguration.hh>

Public Member Functions

 PhantomConfiguration ()
 
 ~PhantomConfiguration ()
 
G4int Initialize ()
 
G4int GetPhantomTotalPixels ()
 
G4int GetNucleusTotalPixels ()
 
G4int GetCytoplasmTotalPixels ()
 
G4float GetPixelSizeX ()
 
G4float GetPixelSizeY ()
 
G4float GetPixelSizeZ ()
 
G4float GetCytoplasmMass ()
 
G4float GetNucleusMass ()
 
G4ThreeVector GetVoxelThreeVector (G4int i)
 

Detailed Description

Definition at line 40 of file PhantomConfiguration.hh.

Constructor & Destructor Documentation

PhantomConfiguration::PhantomConfiguration ( )

Definition at line 49 of file PhantomConfiguration.cc.

References Initialize().

50 {
51  Initialize();
52 }
PhantomConfiguration::~PhantomConfiguration ( )

Definition at line 54 of file PhantomConfiguration.cc.

55 {
56  delete[] fVoxelThreeVector;
57 }

Member Function Documentation

G4float PhantomConfiguration::GetCytoplasmMass ( )
inline

Definition at line 54 of file PhantomConfiguration.hh.

54 {return fCytoplasmMass;}
G4int PhantomConfiguration::GetCytoplasmTotalPixels ( )
inline

Definition at line 50 of file PhantomConfiguration.hh.

50 {return fCytoplasmTotalPixels;}
G4float PhantomConfiguration::GetNucleusMass ( )
inline

Definition at line 55 of file PhantomConfiguration.hh.

55 {return fNucleusMass;}
G4int PhantomConfiguration::GetNucleusTotalPixels ( )
inline

Definition at line 49 of file PhantomConfiguration.hh.

49 {return fNucleusTotalPixels;}
G4int PhantomConfiguration::GetPhantomTotalPixels ( )
inline

Definition at line 48 of file PhantomConfiguration.hh.

48 {return fPhantomTotalPixels;}
G4float PhantomConfiguration::GetPixelSizeX ( )
inline

Definition at line 51 of file PhantomConfiguration.hh.

51 {return fDx;}
G4float PhantomConfiguration::GetPixelSizeY ( )
inline

Definition at line 52 of file PhantomConfiguration.hh.

52 {return fDy;}
G4float PhantomConfiguration::GetPixelSizeZ ( )
inline

Definition at line 53 of file PhantomConfiguration.hh.

53 {return fDz;}
G4ThreeVector PhantomConfiguration::GetVoxelThreeVector ( G4int  i)
inline

Definition at line 57 of file PhantomConfiguration.hh.

57 {return fVoxelThreeVector[i];}
G4int PhantomConfiguration::Initialize ( )

Definition at line 61 of file PhantomConfiguration.cc.

References python.hepunit::cm3, density, g(), python.hepunit::micrometer, and test::v.

Referenced by PhantomConfiguration().

62 {
63  G4float vx, vy, vz, tmp, density;
64  G4int den, mat;
65  G4float denCyto1, denCyto2, denCyto3, denNucl1, denNucl2, denNucl3;
66 
67  FILE* fMap;
68 
69  density=0;
70 
71  fPhantomTotalPixels=0;
72  fNucleusTotalPixels=0;
73  fCytoplasmTotalPixels=0;
74  fDx=0;
75  fDy=0;
76  fDz=0;
77  fNucleusMass=0;
78  fCytoplasmMass=0;
79 
80  // READ PHANTOM PARAMETERS
81  fMap = fopen("phantom.dat","r");
82 
83  fscanf(fMap,"%i %i %i",&fPhantomTotalPixels, &fNucleusTotalPixels, &fCytoplasmTotalPixels);
84  fscanf(fMap,"%f %f %f",&fDx, &fDy, &fDz);
85  fscanf(fMap,"%f %f %f",&tmp, &tmp, &tmp);
86  fscanf(fMap,"%f %f %f",&denCyto1, &denCyto2, &denCyto3);
87  fscanf(fMap,"%f %f %f",&denNucl1, &denNucl2, &denNucl3);
88  fDx = fDx * micrometer;
89  fDy = fDy * micrometer;
90  fDz = fDz * micrometer;
91 
92  fVoxelThreeVector = new G4ThreeVector [fPhantomTotalPixels];
93 
94  for (G4int i=0; i<fPhantomTotalPixels; i++)
95  {
96  fscanf(fMap,"%f %f %f %i %i %f",&vx, &vy, &vz, &mat, &den, &tmp);
97 
98  if (std::abs(mat-2)<1.e-30) // NUCLEUS
99  {
100  if (std::abs(den-1)<1.e-30) density = denNucl1*(g/cm3);
101  if (std::abs(den-2)<1.e-30) density = denNucl2*(g/cm3);
102  if (std::abs(den-3)<1.e-30) density = denNucl3*(g/cm3);
103  fNucleusMass = fNucleusMass + density * fDx * fDy * fDz ;
104  }
105 
106  if (std::abs(mat-1)<1.e-30) // CYTOPLASM
107  {
108  if (std::abs(den-1)<1e-30) density = denCyto1*(g/cm3);
109  if (std::abs(den-2)<1e-30) density = denCyto2*(g/cm3);
110  if (std::abs(den-3)<1e-30) density = denCyto3*(g/cm3);
111  fCytoplasmMass = fCytoplasmMass + density * fDx * fDy * fDz ;
112  }
113 
114  G4ThreeVector v(vx,vy,vz);
115  fVoxelThreeVector[i] = v;
116  }
117 
118  fclose(fMap);
119 
120  return 0;
121 }
float G4float
Definition: G4Types.hh:77
int G4int
Definition: G4Types.hh:78
G4double density
Definition: TRTMaterials.hh:39
function g(Y1, Y2, PT2)
Definition: hijing1.383.f:5205
int micrometer
Definition: hepunit.py:34

The documentation for this class was generated from the following files: