File indexing completed on 2025-04-04 08:05:19
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 #include "DetectorConstruction.hh"
0035
0036 #include "DetectorMessenger.hh"
0037 #include "PrimaryGeneratorAction.hh"
0038
0039 #include "G4Box.hh"
0040 #include "G4FieldManager.hh"
0041 #include "G4GeometryManager.hh"
0042 #include "G4LogicalVolume.hh"
0043 #include "G4LogicalVolumeStore.hh"
0044 #include "G4Material.hh"
0045 #include "G4NistManager.hh"
0046 #include "G4PVPlacement.hh"
0047 #include "G4PhysicalConstants.hh"
0048 #include "G4PhysicalVolumeStore.hh"
0049 #include "G4RunManager.hh"
0050 #include "G4SolidStore.hh"
0051 #include "G4SystemOfUnits.hh"
0052 #include "G4ThreeVector.hh"
0053 #include "G4TransportationManager.hh"
0054 #include "G4Tubs.hh"
0055 #include "G4UniformMagField.hh"
0056 #include "globals.hh"
0057
0058
0059
0060 DetectorConstruction::DetectorConstruction()
0061 : G4VUserDetectorConstruction(),
0062 fTargetMaterial(nullptr),
0063 fLogicExperimentalHall(nullptr),
0064 fPhysExperimentalHall(nullptr),
0065 fLogicTargetLayer(nullptr),
0066 fPhysTargetLayer(nullptr),
0067 fFieldMgr(nullptr),
0068 fUniformMagField(nullptr),
0069 fDetectorMessenger(nullptr),
0070 fTargetInnerRadius(9.0 * mm),
0071 fTargetOuterRadius(11.0 * mm)
0072 {
0073 fFieldMgr = G4TransportationManager::GetTransportationManager()->GetFieldManager();
0074
0075 fTargetMaterial = G4NistManager::Instance()->FindOrBuildMaterial("G4_Be");
0076 fDetectorMessenger = new DetectorMessenger(this);
0077 }
0078
0079
0080
0081 DetectorConstruction::~DetectorConstruction()
0082 {
0083 delete fUniformMagField;
0084 delete fDetectorMessenger;
0085 }
0086
0087
0088
0089 G4VPhysicalVolume* DetectorConstruction::Construct()
0090 {
0091 return ConstructLayer();
0092 }
0093
0094
0095
0096 G4VPhysicalVolume* DetectorConstruction::ConstructLayer()
0097 {
0098
0099 G4GeometryManager::GetInstance()->OpenGeometry();
0100 G4PhysicalVolumeStore::GetInstance()->Clean();
0101 G4LogicalVolumeStore::GetInstance()->Clean();
0102 G4SolidStore::GetInstance()->Clean();
0103
0104
0105
0106
0107
0108 const G4double halfLength = 1.0 * m;
0109 const G4double expHall_x = 1.01 * halfLength;
0110 const G4double expHall_y = 1.01 * halfLength;
0111 const G4double expHall_z = 1.01 * halfLength;
0112 G4Material* vacuum = G4NistManager::Instance()->FindOrBuildMaterial("G4_Galactic");
0113 G4Box* experimentalHallBox = new G4Box("expHallBox", expHall_x, expHall_y, expHall_z);
0114 fLogicExperimentalHall = new G4LogicalVolume(experimentalHallBox,
0115 vacuum,
0116 "logicExpHall",
0117 0,
0118 0,
0119 0);
0120 fPhysExperimentalHall = new G4PVPlacement(0,
0121 G4ThreeVector(),
0122 "expHall",
0123 fLogicExperimentalHall,
0124 0,
0125 false,
0126 0);
0127
0128 G4Tubs* solidTargetLayer = new G4Tubs("solidTargetLayer",
0129 fTargetInnerRadius,
0130 fTargetOuterRadius,
0131 halfLength,
0132 0.0,
0133 2.0 * pi);
0134 fLogicTargetLayer = new G4LogicalVolume(solidTargetLayer,
0135 fTargetMaterial,
0136 "logicTargetLayer",
0137 0,
0138 0,
0139 0);
0140 fPhysTargetLayer = new G4PVPlacement(0,
0141 G4ThreeVector(),
0142 "physTargetLayer",
0143 fLogicTargetLayer,
0144 fPhysExperimentalHall,
0145 false,
0146 0);
0147 PrintParameters();
0148 G4cout << G4endl << "DetectorConstruction::ConstructLayer() : " << G4endl
0149 << "\t World (box) size: " << G4endl << "\t \t x : -/+ " << expHall_x << " mm ;"
0150 << "\t y : -/+ " << expHall_y << " mm ;"
0151 << "\t z : -/+ " << expHall_z << " mm ;" << G4endl
0152 << "\t Layer (cylinder) size : " << G4endl << "\t \t radii : " << fTargetInnerRadius
0153 << " , " << fTargetOuterRadius << " mm ;"
0154 << "\t \t length (along z) : " << 2.0 * halfLength << " mm ;" << G4endl << G4endl
0155 << G4endl;
0156 return fPhysExperimentalHall;
0157 }
0158
0159
0160
0161 void DetectorConstruction::SetTargetMaterial(const G4String name)
0162 {
0163 fTargetMaterial = G4NistManager::Instance()->FindOrBuildMaterial(name);
0164 if (!fTargetMaterial) {
0165 G4cout << G4endl << G4endl << "WARNING: the name of the material has not been recognized!"
0166 << G4endl << " ===> the default * G4_Be * will be used." << G4endl << G4endl;
0167
0168 fTargetMaterial = G4NistManager::Instance()->FindOrBuildMaterial("G4_Be");
0169 }
0170 if (fLogicTargetLayer) fLogicTargetLayer->SetMaterial(fTargetMaterial);
0171 }
0172
0173
0174
0175 void DetectorConstruction::UpdateGeometry()
0176 {
0177 G4RunManager::GetRunManager()->ReinitializeGeometry();
0178 PrintParameters();
0179
0180 const PrimaryGeneratorAction* pPrimaryAction = dynamic_cast<const PrimaryGeneratorAction*>(
0181 G4RunManager::GetRunManager()->GetUserPrimaryGeneratorAction());
0182 if (pPrimaryAction) pPrimaryAction->SetGunPosition();
0183 }
0184
0185
0186
0187 void DetectorConstruction::PrintParameters()
0188 {
0189 G4cout << G4endl << G4endl << " ------ DetectorConstruction::PrintParameters() ------ " << G4endl
0190 << " Material = " << fTargetMaterial->GetName() << G4endl
0191 << " Target Inner Radius = " << fTargetInnerRadius << " mm" << G4endl
0192 << " Target Outer Radius = " << fTargetOuterRadius << " mm" << G4endl
0193 << " B [T] = "
0194 << (fUniformMagField ? fUniformMagField->GetConstantFieldValue() / CLHEP::tesla
0195 : G4ThreeVector(0.0, 0.0, 0.0))
0196 << G4endl << " ------------------------------------------------------ " << G4endl
0197 << G4endl;
0198 }
0199
0200
0201
0202 void DetectorConstruction::SetMagField(const G4double fieldValue)
0203 {
0204 if (fUniformMagField) delete fUniformMagField;
0205 if (std::abs(fieldValue) > 0.0) {
0206
0207 fUniformMagField = new G4UniformMagField(G4ThreeVector(0.0, 0.0, fieldValue));
0208 fFieldMgr->SetDetectorField(fUniformMagField);
0209 fFieldMgr->CreateChordFinder(fUniformMagField);
0210 }
0211 }
0212
0213