Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file polarisation/Pol01/src/DetectorConst 27 /// \brief Implementation of the DetectorConst 28 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 33 #include "DetectorConstruction.hh" 34 35 #include "DetectorMessenger.hh" 36 37 #include "G4Box.hh" 38 #include "G4GeometryManager.hh" 39 #include "G4LogicalVolume.hh" 40 #include "G4LogicalVolumeStore.hh" 41 #include "G4Material.hh" 42 #include "G4NistManager.hh" 43 #include "G4PVPlacement.hh" 44 #include "G4PhysicalVolumeStore.hh" 45 #include "G4PolarizationManager.hh" 46 #include "G4RunManager.hh" 47 #include "G4SolidStore.hh" 48 #include "G4SystemOfUnits.hh" 49 #include "G4UnitsTable.hh" 50 51 //....oooOO0OOooo........oooOO0OOooo........oo 52 53 DetectorConstruction::DetectorConstruction() 54 : G4VUserDetectorConstruction(), fWorld(0), 55 { 56 fBoxSizeXY = 50 * mm; 57 fBoxSizeZ = 5 * mm; 58 fWorldSize = 1. * m; 59 ConstructMaterials(); 60 fMessenger = new DetectorMessenger(this); 61 } 62 63 //....oooOO0OOooo........oooOO0OOooo........oo 64 65 DetectorConstruction::~DetectorConstruction() 66 { 67 delete fMessenger; 68 } 69 //....oooOO0OOooo........oooOO0OOooo........oo 70 71 void DetectorConstruction::ConstructMaterials( 72 { 73 auto nistManager = G4NistManager::Instance() 74 75 fTargetMaterial = nistManager->FindOrBuildMa 76 if (fTargetMaterial == nullptr) { 77 G4cerr << "### ERROR - Material: <" 78 << "G4_Fe" 79 << "> not found" << G4endl; 80 } 81 82 fWorldMaterial = nistManager->FindOrBuildMat 83 if (fWorldMaterial == nullptr) { 84 G4cerr << "### ERROR - Material: <" 85 << "G4_Galactic" 86 << "> not found" << G4endl; 87 } 88 } 89 90 //....oooOO0OOooo........oooOO0OOooo........oo 91 92 G4LogicalVolume* lBox; 93 94 G4VPhysicalVolume* DetectorConstruction::Const 95 { 96 // G4PolarizationManager::GetInstance()->Cle 97 98 // World 99 // 100 G4Box* sWorld = new G4Box("World", // name 101 fWorldSize / 2, fW 102 103 G4LogicalVolume* lWorld = new G4LogicalVolum 104 105 106 107 fWorld = new G4PVPlacement(0, // no rotatio 108 G4ThreeVector(), 109 lWorld, // logic 110 "World", // name 111 0, // mother vol 112 false, // no boo 113 0); // copy numb 114 115 // Box 116 // 117 G4Box* sBox = new G4Box("Container", // its 118 fBoxSizeXY / 2., fBo 119 120 // G4LogicalVolume* 121 lBox = new G4LogicalVolume(sBox, // its sha 122 fTargetMaterial, 123 "theBox"); // it 124 125 fBox = new G4PVPlacement(0, // no rotation 126 G4ThreeVector(), / 127 lBox, // its logic 128 fTargetMaterial->Ge 129 lWorld, // its mot 130 false, // no boole 131 0); // copy number 132 133 PrintParameters(); 134 135 // always return the root volume 136 // 137 return fWorld; 138 } 139 140 //....oooOO0OOooo........oooOO0OOooo........oo 141 142 void DetectorConstruction::ConstructSDandField 143 { 144 // register logical Volume in PolarizationMa 145 G4PolarizationManager* polMgr = G4Polarizati 146 polMgr->SetVolumePolarization(lBox, G4ThreeV 147 } 148 149 //....oooOO0OOooo........oooOO0OOooo........oo 150 151 void DetectorConstruction::PrintParameters() 152 { 153 G4cout << "\n The Box is " << G4BestUnit(fBo 154 << G4BestUnit(fBoxSizeXY, "Length") < 155 << fTargetMaterial->GetName() << G4en 156 } 157 158 //....oooOO0OOooo........oooOO0OOooo........oo 159 160 void DetectorConstruction::SetTargetMaterial(G 161 { 162 // search the material by its name 163 G4Material* mat = G4NistManager::Instance()- 164 if (mat != fTargetMaterial) { 165 if (mat) { 166 fTargetMaterial = mat; 167 G4RunManager::GetRunManager()->PhysicsHa 168 UpdateGeometry(); 169 } 170 else { 171 G4cout << "### Warning! Target material 172 } 173 } 174 } 175 176 //....oooOO0OOooo........oooOO0OOooo........oo 177 178 void DetectorConstruction::SetWorldMaterial(G4 179 { 180 // search the material by its name 181 G4Material* mat = G4NistManager::Instance()- 182 if (mat != fWorldMaterial) { 183 if (mat) { 184 fWorldMaterial = mat; 185 G4RunManager::GetRunManager()->PhysicsHa 186 UpdateGeometry(); 187 } 188 else { 189 G4cout << "### Warning! World material: 190 } 191 } 192 } 193 194 //....oooOO0OOooo........oooOO0OOooo........oo 195 196 void DetectorConstruction::SetSizeXY(G4double 197 { 198 fBoxSizeXY = value; 199 if (fWorldSize < fBoxSizeXY) fWorldSize = 1. 200 UpdateGeometry(); 201 } 202 203 void DetectorConstruction::SetSizeZ(G4double v 204 { 205 fBoxSizeZ = value; 206 if (fWorldSize < fBoxSizeZ) fWorldSize = 1.2 207 UpdateGeometry(); 208 } 209 210 //....oooOO0OOooo........oooOO0OOooo........oo 211 212 #include "G4RunManager.hh" 213 214 void DetectorConstruction::UpdateGeometry() 215 { 216 // if (fWorld) 217 // G4RunManager::GetRunManager()->DefineWo 218 G4RunManager::GetRunManager()->GeometryHasBe 219 } 220 221 //....oooOO0OOooo........oooOO0OOooo........oo 222