Geant4 Cross Reference |
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 // 27 /// \file medical/electronScattering2/include/ElectronBenchmarkDetector.hh 28 /// \brief Definition of the ElectronBenchmarkDetector class 29 30 #ifndef ElectronBenchmarkDetector_h 31 #define ElectronBenchmarkDetector_h 1 32 33 #include "G4Cache.hh" 34 #include "G4ThreeVector.hh" 35 #include "G4VUserDetectorConstruction.hh" 36 #include "globals.hh" 37 38 class G4LogicalVolume; 39 class G4VPhysicalVolume; 40 class G4Tubs; 41 class G4MultiFunctionalDetector; 42 class G4Material; 43 class G4VisAttributes; 44 class ElectronBenchmarkDetectorMessenger; 45 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 47 48 class ElectronBenchmarkDetector : public G4VUserDetectorConstruction 49 { 50 public: 51 ElectronBenchmarkDetector(); 52 ~ElectronBenchmarkDetector() override; 53 54 G4VPhysicalVolume* Construct() override; 55 56 // Sensitive Detector 57 void ConstructSDandField() override; 58 59 // Material Definition 60 void DefineMaterials(); 61 62 // Geometry Definition 63 G4VPhysicalVolume* CreateWorld(); 64 void CreateExitWindow(G4LogicalVolume* logicWorld); 65 void CreatePrimaryFoil(G4LogicalVolume* logicWorld); 66 void CreateMonitor(G4LogicalVolume* logicWorld); 67 void CreateHeliumBag(G4LogicalVolume* logicWorld); 68 void CreateScorer(G4LogicalVolume* logicWorld); 69 G4VPhysicalVolume* CreateGeometry(); 70 71 // Command Interface 72 void SetPrimFoilMaterial(const G4String& matname); 73 void SetPrimFoilThickness(G4double thicknessPrimFoil); 74 75 private: 76 // Exit Window. 77 G4double fPosWindow0; 78 G4double fPosWindow1; 79 80 // Primary Foil 81 G4Material* fMaterialPrimFoil = nullptr; 82 G4double fHalfThicknessPrimFoil; 83 G4double fPosPrimFoil; 84 G4LogicalVolume* fLogPrimFoil = nullptr; 85 G4Tubs* fSolidPrimFoil; 86 87 // Monitor Chambers 88 G4double fPosMon0; 89 G4double fPosMon1; 90 91 // Helium Bag 92 G4double fPosBag0; 93 G4double fPosBag1; 94 G4double fPosHelium0; 95 G4double fPosHelium1; 96 G4double fThicknessRing; 97 98 // Scoring Plane 99 G4double fPosScorer; 100 G4double fThicknessScorer; 101 G4double fWidthScorerRing; 102 G4LogicalVolume* fScorerRingLog = nullptr; 103 104 // Radii 105 G4double fRadOverall; 106 G4double fRadRingInner; 107 108 // Extra space remaining in world volume around apparatus 109 G4double fPosDelta; 110 G4double fRadDelta; 111 112 // World volume 113 G4LogicalVolume* fLogWorld = nullptr; 114 G4VPhysicalVolume* fPhysiWorld = nullptr; 115 116 // SensitiveDetector 117 // G4Cache mechanism is necessary for multi-threaded operation 118 // as it allows us to store separate detector pointer per thread 119 const G4Cache<G4MultiFunctionalDetector*> fSensitiveDetectorCache; 120 121 // Messenger 122 ElectronBenchmarkDetectorMessenger* fMessenger = nullptr; 123 124 // Visualization Attributes 125 G4VisAttributes* fWorldVisAtt = nullptr; 126 G4VisAttributes* fWindowVisAtt = nullptr; 127 G4VisAttributes* fPrimFoilVisAtt = nullptr; 128 G4VisAttributes* fMonVisAtt = nullptr; 129 G4VisAttributes* fBagVisAtt = nullptr; 130 G4VisAttributes* fHeliumVisAtt = nullptr; 131 G4VisAttributes* fRingVisAtt = nullptr; 132 G4VisAttributes* fScorerVisAtt = nullptr; 133 }; 134 135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 136 137 #endif 138