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