File indexing completed on 2025-04-04 08:05:04
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
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041 #include "DetectorConstruction.hh"
0042
0043 #include "DetectorMessenger.hh"
0044
0045 #include "G4Colour.hh"
0046 #include "G4GeometryManager.hh"
0047 #include "G4LogicalVolume.hh"
0048 #include "G4LogicalVolumeStore.hh"
0049 #include "G4NistManager.hh"
0050 #include "G4PVPlacement.hh"
0051 #include "G4PhysicalConstants.hh"
0052 #include "G4PhysicalVolumeStore.hh"
0053 #include "G4RunManager.hh"
0054 #include "G4SolidStore.hh"
0055 #include "G4SystemOfUnits.hh"
0056 #include "G4Tubs.hh"
0057 #include "G4UnitsTable.hh"
0058 #include "G4VisAttributes.hh"
0059 #include "G4ios.hh"
0060
0061
0062
0063 DetectorConstruction::DetectorConstruction()
0064 : G4VUserDetectorConstruction(),
0065 fTargetMaterial(nullptr),
0066 fWorldMaterial(nullptr),
0067 fSolidW(nullptr),
0068 fSolidA(nullptr),
0069 fLogicTarget(nullptr),
0070 fLogicWorld(nullptr),
0071 fPhysWorld(nullptr),
0072 fPhysList(nullptr)
0073 {
0074 fDetectorMessenger = new DetectorMessenger(this);
0075
0076 fRadius = 5. * cm;
0077 fLength = 10. * cm;
0078
0079 fTargetMaterial = G4NistManager::Instance()->FindOrBuildMaterial("G4_Al");
0080 fWorldMaterial = G4NistManager::Instance()->FindOrBuildMaterial("G4_Galactic");
0081
0082 ComputeGeomParameters();
0083 }
0084
0085
0086
0087 DetectorConstruction::~DetectorConstruction()
0088 {
0089 delete fDetectorMessenger;
0090 }
0091
0092 void DetectorConstruction::ComputeGeomParameters()
0093 {
0094
0095 fWorldR = fRadius + CLHEP::cm;
0096 fWorldZ = fLength + CLHEP::cm;
0097 if (fPhysWorld) {
0098 fSolidW->SetOuterRadius(fWorldR);
0099 fSolidW->SetZHalfLength(fWorldZ * 0.5);
0100 fSolidA->SetOuterRadius(fRadius);
0101 fSolidA->SetZHalfLength(fLength * 0.5);
0102 }
0103 }
0104
0105 G4VPhysicalVolume* DetectorConstruction::Construct()
0106 {
0107 if (fPhysWorld) {
0108 return fPhysWorld;
0109 }
0110 ComputeGeomParameters();
0111
0112
0113
0114
0115 fSolidW = new G4Tubs("World", 0., fWorldR, 0.5 * fWorldZ, 0., twopi);
0116 fLogicWorld = new G4LogicalVolume(fSolidW, fWorldMaterial, "World");
0117 fPhysWorld =
0118 new G4PVPlacement(nullptr, G4ThreeVector(0., 0., 0.), fLogicWorld, "World", nullptr, false, 0);
0119
0120
0121
0122
0123 fSolidA = new G4Tubs("Target", 0., fRadius, 0.5 * fLength, 0., twopi);
0124 fLogicTarget = new G4LogicalVolume(fSolidA, fTargetMaterial, "Target");
0125 new G4PVPlacement(nullptr, G4ThreeVector(), fLogicTarget, "Target", fLogicWorld, false, 0);
0126
0127 G4cout << "### Target consist of " << fTargetMaterial->GetName()
0128 << " disks with R(mm)= " << fRadius / mm << " fLength(mm)= " << fLength / mm << " ###"
0129 << G4endl;
0130
0131
0132 fLogicWorld->SetVisAttributes(G4VisAttributes::GetInvisible());
0133
0134 G4VisAttributes* regCcolor = new G4VisAttributes(G4Colour(0., 0.3, 0.7));
0135 fLogicTarget->SetVisAttributes(regCcolor);
0136
0137 G4cout << *(G4Material::GetMaterialTable()) << G4endl;
0138
0139 return fPhysWorld;
0140 }
0141
0142
0143
0144 void DetectorConstruction::SetTargetMaterial(const G4String& mat)
0145 {
0146
0147 G4Material* material = G4NistManager::Instance()->FindOrBuildMaterial(mat);
0148
0149 if (material && material != fTargetMaterial) {
0150 fTargetMaterial = material;
0151 if (fLogicTarget) {
0152 fLogicTarget->SetMaterial(fTargetMaterial);
0153 }
0154 G4RunManager::GetRunManager()->PhysicsHasBeenModified();
0155 }
0156 }
0157
0158
0159
0160 void DetectorConstruction::SetWorldMaterial(const G4String& mat)
0161 {
0162
0163 G4Material* material = G4NistManager::Instance()->FindOrBuildMaterial(mat);
0164
0165 if (material && material != fWorldMaterial) {
0166 fWorldMaterial = material;
0167 if (fLogicWorld) {
0168 fLogicWorld->SetMaterial(fWorldMaterial);
0169 }
0170 G4RunManager::GetRunManager()->PhysicsHasBeenModified();
0171 }
0172 }
0173
0174 void DetectorConstruction::SetTargetRadius(G4double val)
0175 {
0176 if (val > 0.0 && val != fRadius) {
0177 fRadius = val;
0178 ComputeGeomParameters();
0179 }
0180 }
0181
0182
0183
0184 void DetectorConstruction::SetTargetLength(G4double val)
0185 {
0186 if (val > 0.0 && val != fLength) {
0187 fLength = val;
0188 ComputeGeomParameters();
0189 }
0190 }
0191
0192