ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
DicomDetectorConstruction.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file DicomDetectorConstruction.hh
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
//
29
//
30
31
#ifndef DicomDetectorConstruction_h
32
#define DicomDetectorConstruction_h 1
33
34
#include "
globals.hh
"
35
#include "
G4VUserDetectorConstruction.hh
"
36
#include "
DicomPhantomZSliceHeader.hh
"
37
#include "
G4ThreeVector.hh
"
38
39
#include <set>
40
#include <map>
41
42
class
G4Material
;
43
class
G4Box
;
44
class
G4LogicalVolume
;
45
class
DicomPhantomZSliceMerged
;
46
47
//*******************************************************
57
//*******************************************************
58
59
struct
matInfo
60
{
61
G4double
fSumdens
;
62
G4int
fNvoxels
;
63
G4int
fId
;
64
};
65
66
class
DicomDetectorConstruction
:
public
G4VUserDetectorConstruction
67
{
68
public
:
69
DicomDetectorConstruction
();
70
~DicomDetectorConstruction
();
71
72
virtual
G4VPhysicalVolume
*
Construct
();
73
// trigger the construction of the geometry
74
75
G4int
GetTotalVoxels
()
const
;
76
77
protected
:
78
79
void
InitialisationOfMaterials
();
80
// create the original materials
81
82
void
ReadPhantomData
();
83
void
ReadPhantomDataNew
();
84
// read the DICOM files describing the phantom
85
void
ReadVoxelDensities
( std::ifstream&
fin
);
86
87
void
ReadPhantomDataFile
(
const
G4String
&
fname
);
88
// read one of the DICOM files describing the phantom
89
// (usually one per Z slice).
90
// Build a DicomPhantomZSliceHeader for each file
91
92
void
MergeZSliceHeaders
();
93
// merge the slice headers of all the files
94
95
G4Material
*
BuildMaterialWithChangingDensity
(
96
const
G4Material
* origMate,
G4float
density,
G4String
newMateName );
97
// build a new material if the density of the voxel is different
98
// to the other voxels
99
100
void
ConstructPhantomContainer
();
101
void
ConstructPhantomContainerNew
();
102
virtual
void
ConstructPhantom
() = 0;
103
// construct the phantom volumes.
104
// This method should be implemented for each of the derived classes
105
106
void
SetScorer
(
G4LogicalVolume
* voxel_logic);
107
108
virtual
void
ConstructSDandField
();
109
110
protected
:
111
112
G4Material
*
fAir
;
113
114
// World ...
115
G4Box
*
fWorld_solid
;
116
G4LogicalVolume
*
fWorld_logic
;
117
G4VPhysicalVolume
*
fWorld_phys
;
118
119
G4Box
*
fContainer_solid
;
120
G4LogicalVolume
*
fContainer_logic
;
121
G4VPhysicalVolume
*
fContainer_phys
;
122
123
G4int
fNoFiles
;
// number of DICOM files
124
std::vector<G4Material*>
fOriginalMaterials
;
// list of original materials
125
std::vector<G4Material*>
fMaterials
;
126
// list of new materials created to distinguish different density
127
// voxels that have the same original materials
128
size_t
*
fMateIDs
;
// index of material of each voxel
129
//unsigned int* fMateIDs; // index of material of each voxel
130
131
std::map<G4int,G4double>
fDensityDiffs
;
132
// Density difference to distinguish material for each original
133
// material (by index)
134
135
std::vector<DicomPhantomZSliceHeader*>
fZSliceHeaders
;
136
// list of z slice header (one per DICOM files)
137
DicomPhantomZSliceHeader
*
fZSliceHeaderMerged
;
138
// z slice header resulted from merging all z slice headers
139
140
G4int
fNVoxelX
,
fNVoxelY
,
fNVoxelZ
;
141
G4double
fVoxelHalfDimX
,
fVoxelHalfDimY
,
fVoxelHalfDimZ
;
142
G4double
fMinX
,
fMinY
,
fMinZ
;
// minimum extension of voxels (position wall)
143
G4double
fMaxX
,
fMaxY
,
fMaxZ
;
// maximum extension of voxels (position wall)
144
145
std::map<G4int,G4Material*>
thePhantomMaterialsOriginal
;
146
// map numberOfMaterial to G4Material. They are the list of materials as
147
// built from .geom file
148
149
DicomPhantomZSliceMerged
*
fMergedSlices
;
150
151
std::set<G4LogicalVolume*>
fScorers
;
152
153
G4bool
fConstructed
;
154
};
155
156
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
157
158
inline
G4int
DicomDetectorConstruction::GetTotalVoxels
()
const
159
{
160
return
fNVoxelX
*
fNVoxelY
*
fNVoxelZ
;
161
}
162
163
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
164
165
#endif
geant4
tree
geant4-10.6-release
examples
extended
medical
DICOM
include
DicomDetectorConstruction.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:07
using
1.8.2 with
ECCE GitHub integration