source: trunk/examples/extended/medical/DICOM/include/DicomDetectorConstruction.hh @ 1292

Last change on this file since 1292 was 1230, checked in by garnier, 15 years ago

update to geant4.9.3

File size: 4.3 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// Author: P. Arce
27// History: 30.11.07  First version
28//*******************************************************
29//
30// DicomDetectorConstruction.hh :
31//      - Start the building of the geometry
32//      - Initialisation of materials
33//      - Creation of the world
34//      - Reading of the DICOM data
35//*******************************************************
36
37#ifndef DicomDetectorConstruction_h
38#define DicomDetectorConstruction_h 1
39
40#include "globals.hh"
41#include "G4VUserDetectorConstruction.hh"
42#include "DicomPatientZSliceHeader.hh"
43
44class G4Material;
45class G4Box;
46class G4LogicalVolume;
47
48class DicomDetectorConstruction : public G4VUserDetectorConstruction
49{
50public:
51
52  DicomDetectorConstruction();
53  ~DicomDetectorConstruction();
54
55  G4VPhysicalVolume* Construct();
56  // trigger the construction of the geometry
57
58protected:
59  void InitialisationOfMaterials();
60  // create the original materials
61
62  void ReadPatientData();
63  // read the DICOM files describing the patient
64
65  void ReadPatientDataFile(const G4String& fname);
66  // read one of the DICOM files describing the patient (usually one per Z slice). Build a DicomPatientZSliceHeader for each file
67
68  void MergeZSliceHeaders();
69  // merge the slice headers of all the files
70
71  G4Material* BuildMaterialWithChangingDensity( const G4Material* origMate, float density, G4String newMateName );
72  // build a new material if the density of the voxel is different to the other voxels
73
74  G4String ftoa(float flo);
75  // convert a float to a string
76
77  void ConstructPatientContainer();
78  virtual void ConstructPatient() = 0;
79  // construct the patient volumes. This method should be implemented for each of the derived classes
80
81  void SetScorer(G4LogicalVolume* voxel_logic);
82
83protected:
84  G4Material* air;
85
86  // World ...
87  G4Box* world_solid;
88  G4LogicalVolume* world_logic;
89  G4VPhysicalVolume* world_phys;
90
91  G4Box* container_solid;
92  G4LogicalVolume* container_logic;
93  G4VPhysicalVolume* container_phys;
94
95  G4int fNoFiles; // number of DICOM files
96  std::vector<G4Material*> fOriginalMaterials;  // list of original materials
97  std::vector<G4Material*> fMaterials;  // list of new materials created to distinguish different density voxels that have the same original materials
98  size_t* fMateIDs; // index of material of each voxel
99
100  std::map<G4int,G4double> fDensityDiffs; // Density difference to distinguish material for each original material (by index)
101 
102  std::vector<DicomPatientZSliceHeader*> fZSliceHeaders; // list of z slice header (one per DICOM files)
103  DicomPatientZSliceHeader* fZSliceHeaderMerged; // z slice header resulted from merging all z slice headers
104
105  G4int nVoxelX, nVoxelY, nVoxelZ;
106  G4double voxelHalfDimX,  voxelHalfDimY, voxelHalfDimZ;
107};
108
109#endif
110
Note: See TracBrowser for help on using the repository browser.