File indexing completed on 2025-02-23 09:22:48
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030 #include "DetectorConstruction.hh"
0031
0032 #include "G4Box.hh"
0033 #include "G4Cons.hh"
0034 #include "G4LogicalVolume.hh"
0035 #include "G4NistManager.hh"
0036 #include "G4Orb.hh"
0037 #include "G4PVPlacement.hh"
0038 #include "G4RunManager.hh"
0039 #include "G4Sphere.hh"
0040 #include "G4SystemOfUnits.hh"
0041 #include "G4Trd.hh"
0042
0043 namespace B1
0044 {
0045
0046
0047
0048 G4VPhysicalVolume* DetectorConstruction::Construct()
0049 {
0050
0051 G4NistManager* nist = G4NistManager::Instance();
0052
0053
0054
0055 G4double env_sizeXY = 20 * cm, env_sizeZ = 30 * cm;
0056 G4Material* env_mat = nist->FindOrBuildMaterial("G4_WATER");
0057
0058
0059
0060 G4bool checkOverlaps = true;
0061
0062
0063
0064
0065 G4double world_sizeXY = 1.2 * env_sizeXY;
0066 G4double world_sizeZ = 1.2 * env_sizeZ;
0067 G4Material* world_mat = nist->FindOrBuildMaterial("G4_AIR");
0068
0069 auto solidWorld =
0070 new G4Box("World",
0071 0.5 * world_sizeXY, 0.5 * world_sizeXY, 0.5 * world_sizeZ);
0072
0073 auto logicWorld = new G4LogicalVolume(solidWorld,
0074 world_mat,
0075 "World");
0076
0077 auto physWorld = new G4PVPlacement(nullptr,
0078 G4ThreeVector(),
0079 logicWorld,
0080 "World",
0081 nullptr,
0082 false,
0083 0,
0084 checkOverlaps);
0085
0086
0087
0088
0089 auto solidEnv = new G4Box("Envelope",
0090 0.5 * env_sizeXY, 0.5 * env_sizeXY, 0.5 * env_sizeZ);
0091
0092 auto logicEnv = new G4LogicalVolume(solidEnv,
0093 env_mat,
0094 "Envelope");
0095
0096 new G4PVPlacement(nullptr,
0097 G4ThreeVector(),
0098 logicEnv,
0099 "Envelope",
0100 logicWorld,
0101 false,
0102 0,
0103 checkOverlaps);
0104
0105
0106
0107
0108 G4Material* shape1_mat = nist->FindOrBuildMaterial("G4_A-150_TISSUE");
0109 G4ThreeVector pos1 = G4ThreeVector(0, 2 * cm, -7 * cm);
0110
0111
0112 G4double shape1_rmina = 0. * cm, shape1_rmaxa = 2. * cm;
0113 G4double shape1_rminb = 0. * cm, shape1_rmaxb = 4. * cm;
0114 G4double shape1_hz = 3. * cm;
0115 G4double shape1_phimin = 0. * deg, shape1_phimax = 360. * deg;
0116 auto solidShape1 = new G4Cons("Shape1", shape1_rmina, shape1_rmaxa, shape1_rminb, shape1_rmaxb,
0117 shape1_hz, shape1_phimin, shape1_phimax);
0118
0119 auto logicShape1 = new G4LogicalVolume(solidShape1,
0120 shape1_mat,
0121 "Shape1");
0122
0123 new G4PVPlacement(nullptr,
0124 pos1,
0125 logicShape1,
0126 "Shape1",
0127 logicEnv,
0128 false,
0129 0,
0130 checkOverlaps);
0131
0132
0133
0134
0135 G4Material* shape2_mat = nist->FindOrBuildMaterial("G4_BONE_COMPACT_ICRU");
0136 G4ThreeVector pos2 = G4ThreeVector(0, -1 * cm, 7 * cm);
0137
0138
0139 G4double shape2_dxa = 12 * cm, shape2_dxb = 12 * cm;
0140 G4double shape2_dya = 10 * cm, shape2_dyb = 16 * cm;
0141 G4double shape2_dz = 6 * cm;
0142 auto solidShape2 =
0143 new G4Trd("Shape2",
0144 0.5 * shape2_dxa, 0.5 * shape2_dxb, 0.5 * shape2_dya, 0.5 * shape2_dyb,
0145 0.5 * shape2_dz);
0146
0147 auto logicShape2 = new G4LogicalVolume(solidShape2,
0148 shape2_mat,
0149 "Shape2");
0150
0151 new G4PVPlacement(nullptr,
0152 pos2,
0153 logicShape2,
0154 "Shape2",
0155 logicEnv,
0156 false,
0157 0,
0158 checkOverlaps);
0159
0160
0161
0162 fScoringVolume = logicShape2;
0163
0164
0165
0166
0167 return physWorld;
0168 }
0169
0170
0171
0172 }