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

Last change on this file since 1229 was 807, checked in by garnier, 16 years ago

update

File size: 4.2 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
81protected:
82  G4Material* air;
83
84  // World ...
85  G4Box* world_solid;
86  G4LogicalVolume* world_logic;
87  G4VPhysicalVolume* world_phys;
88
89  G4Box* container_solid;
90  G4LogicalVolume* container_logic;
91  G4VPhysicalVolume* container_phys;
92
93  G4int fNoFiles; // number of DICOM files
94  std::vector<G4Material*> fOriginalMaterials;  // list of original materials
95  std::vector<G4Material*> fMaterials;  // list of new materials created to distinguish different density voxels that have the same original materials
96  size_t* fMateIDs; // index of material of each voxel
97
98  std::map<G4int,G4double> fDensityDiffs; // Density difference to distinguish material for each original material (by index)
99 
100  std::vector<DicomPatientZSliceHeader*> fZSliceHeaders; // list of z slice header (one per DICOM files)
101  DicomPatientZSliceHeader* fZSliceHeaderMerged; // z slice header resulted from merging all z slice headers
102
103  G4int nVoxelX, nVoxelY, nVoxelZ;
104  G4double voxelHalfDimX,  voxelHalfDimY, voxelHalfDimZ;
105};
106
107#endif
108
Note: See TracBrowser for help on using the repository browser.