Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file electromagnetic/TestEm3/include/Dete << 26 // $Id: DetectorConstruction.hh,v 1.13 2006/06/29 16:51:06 gunter Exp $ 27 /// \brief Definition of the DetectorConstruct << 27 // GEANT4 tag $Name: geant4-09-01-patch-03 $ 28 // << 29 // 28 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 31 33 #ifndef DetectorConstruction_h 32 #ifndef DetectorConstruction_h 34 #define DetectorConstruction_h 1 33 #define DetectorConstruction_h 1 35 34 36 #include "G4Cache.hh" << 37 #include "G4VUserDetectorConstruction.hh" 35 #include "G4VUserDetectorConstruction.hh" 38 #include "globals.hh" 36 #include "globals.hh" 39 37 40 class G4Box; 38 class G4Box; 41 class G4LogicalVolume; 39 class G4LogicalVolume; 42 class G4VPhysicalVolume; 40 class G4VPhysicalVolume; 43 class G4Material; 41 class G4Material; >> 42 class G4UniformMagField; 44 class DetectorMessenger; 43 class DetectorMessenger; 45 44 46 class G4GlobalMagFieldMessenger; << 45 const G4int MaxAbsor = 10; // 0 + 9 47 << 46 48 const G4int kMaxAbsor = 10; // 0 + 9 << 49 << 50 //....oooOO0OOooo........oooOO0OOooo........oo 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 51 48 52 class DetectorConstruction : public G4VUserDet 49 class DetectorConstruction : public G4VUserDetectorConstruction 53 { 50 { 54 public: << 51 public: 55 DetectorConstruction(); << 52 56 ~DetectorConstruction() override; << 53 DetectorConstruction(); 57 << 54 ~DetectorConstruction(); 58 public: << 55 59 void SetNbOfAbsor(G4int); << 56 public: 60 void SetAbsorMaterial(G4int, const G4Strin << 57 61 void SetAbsorThickness(G4int, G4double); << 58 void SetNbOfAbsor (G4int); 62 << 59 void SetAbsorMaterial (G4int,const G4String&); 63 void SetWorldMaterial(const G4String&); << 60 void SetAbsorThickness(G4int,G4double); 64 void SetCalorSizeYZ(G4double); << 61 65 void SetNbOfLayers(G4int); << 62 void SetWorldMaterial (const G4String&); 66 << 63 void SetCalorSizeYZ (G4double); 67 G4VPhysicalVolume* Construct() override; << 64 void SetNbOfLayers (G4int); 68 void ConstructSDandField() override; << 65 69 << 66 void SetMagField (G4double); 70 public: << 67 71 void PrintCalorParameters(); << 68 G4VPhysicalVolume* Construct(); 72 << 69 73 G4double GetWorldSizeX() const { return fW << 70 void UpdateGeometry(); 74 G4double GetWorldSizeYZ() const { return f << 71 75 << 72 public: 76 G4double GetCalorThickness() const { retur << 73 77 G4double GetCalorSizeYZ() const { return f << 74 void PrintCalorParameters(); 78 << 75 79 G4int GetNbOfLayers() const { return fNbOf << 76 G4double GetWorldSizeX() {return WorldSizeX;}; 80 << 77 G4double GetWorldSizeYZ() {return WorldSizeYZ;}; 81 G4int GetNbOfAbsor() const { return fNbOfA << 78 82 G4double GetAbsorThickness(G4int i) const << 79 G4double GetCalorThickness() {return CalorThickness;}; 83 const G4Material* GetAbsorMaterial(G4int i << 80 G4double GetCalorSizeYZ() {return CalorSizeYZ;}; 84 << 81 85 const G4VPhysicalVolume* GetphysiWorld() c << 82 G4int GetNbOfLayers() {return NbOfLayers;}; 86 const G4Material* GetWorldMaterial() const << 83 87 const G4VPhysicalVolume* GetAbsorber(G4int << 84 G4int GetNbOfAbsor() {return NbOfAbsor;}; 88 << 85 G4Material* GetAbsorMaterial(G4int i) {return AbsorMaterial[i];}; 89 private: << 86 G4double GetAbsorThickness(G4int i) {return AbsorThickness[i];}; 90 void DefineMaterials(); << 87 91 void ComputeCalorParameters(); << 88 const G4VPhysicalVolume* GetphysiWorld() {return physiWorld;}; 92 << 89 const G4Material* GetWorldMaterial() {return defaultMaterial;}; 93 G4int fNbOfAbsor = 0; << 90 const G4VPhysicalVolume* GetAbsorber(G4int i) {return physiAbsor[i];}; 94 G4Material* fAbsorMaterial[kMaxAbsor]; << 91 95 G4double fAbsorThickness[kMaxAbsor]; << 92 private: 96 << 93 97 G4int fNbOfLayers = 0; << 94 G4int NbOfAbsor; 98 G4double fLayerThickness = 0.; << 95 G4Material* AbsorMaterial [MaxAbsor]; 99 << 96 G4double AbsorThickness[MaxAbsor]; 100 G4double fCalorSizeYZ = 0.; << 97 101 G4double fCalorThickness = 0.; << 98 G4int NbOfLayers; 102 << 99 G4double LayerThickness; 103 G4Material* fWorldMaterial = nullptr; << 100 104 G4double fWorldSizeYZ = 0.; << 101 G4double CalorSizeYZ; 105 G4double fWorldSizeX = 0.; << 102 G4double CalorThickness; 106 << 103 107 G4Box* fSolidWorld = nullptr; << 104 G4Material* defaultMaterial; 108 G4LogicalVolume* fLogicWorld = nullptr; << 105 G4double WorldSizeYZ; 109 G4VPhysicalVolume* fPhysiWorld = nullptr; << 106 G4double WorldSizeX; 110 << 107 111 G4Box* fSolidCalor = nullptr; << 108 G4Box* solidWorld; 112 G4LogicalVolume* fLogicCalor = nullptr; << 109 G4LogicalVolume* logicWorld; 113 G4VPhysicalVolume* fPhysiCalor = nullptr; << 110 G4VPhysicalVolume* physiWorld; 114 << 111 115 G4Box* fSolidLayer = nullptr; << 112 G4Box* solidCalor; 116 G4LogicalVolume* fLogicLayer = nullptr; << 113 G4LogicalVolume* logicCalor; 117 G4VPhysicalVolume* fPhysiLayer = nullptr; << 114 G4VPhysicalVolume* physiCalor; 118 << 115 119 G4Box* fSolidAbsor[kMaxAbsor]; << 116 G4Box* solidLayer; 120 G4LogicalVolume* fLogicAbsor[kMaxAbsor]; << 117 G4LogicalVolume* logicLayer; 121 G4VPhysicalVolume* fPhysiAbsor[kMaxAbsor]; << 118 G4VPhysicalVolume* physiLayer; 122 << 119 123 DetectorMessenger* fDetectorMessenger = nu << 120 G4Box* solidAbsor[MaxAbsor]; 124 G4Cache<G4GlobalMagFieldMessenger*> fField << 121 G4LogicalVolume* logicAbsor[MaxAbsor]; >> 122 G4VPhysicalVolume* physiAbsor[MaxAbsor]; >> 123 >> 124 G4UniformMagField* magField; >> 125 >> 126 DetectorMessenger* detectorMessenger; >> 127 >> 128 private: >> 129 >> 130 void DefineMaterials(); >> 131 void ComputeCalorParameters(); >> 132 G4VPhysicalVolume* ConstructCalorimeter(); 125 }; 133 }; 126 134 127 //....oooOO0OOooo........oooOO0OOooo........oo 135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 128 136 129 #endif 137 #endif >> 138 130 139