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 field/field02/include/F02DetectorCon << 27 /// \brief Definition of the F02DetectorConstr << 28 // 23 // >> 24 // $Id: F02DetectorConstruction.hh,v 1.5 2003/11/12 16:35:03 japost Exp $ >> 25 // GEANT4 tag $Name: geant4-07-00-patch-01 $ 29 // 26 // 30 // << 27 // 31 // << 32 //....oooOO0OOooo........oooOO0OOooo........oo << 33 //....oooOO0OOooo........oooOO0OOooo........oo << 34 28 35 #ifndef F02DetectorConstruction_h 29 #ifndef F02DetectorConstruction_h 36 #define F02DetectorConstruction_h 1 30 #define F02DetectorConstruction_h 1 37 31 38 #include "G4VUserDetectorConstruction.hh" 32 #include "G4VUserDetectorConstruction.hh" 39 #include "G4Cache.hh" << 33 #include "globals.hh" 40 #include "G4ThreeVector.hh" << 34 #include "G4ios.hh" 41 << 42 #include "CLHEP/Units/SystemOfUnits.h" << 43 35 44 class G4Box; 36 class G4Box; 45 class G4Tubs; 37 class G4Tubs; 46 class G4LogicalVolume; 38 class G4LogicalVolume; 47 class G4VPhysicalVolume; 39 class G4VPhysicalVolume; 48 << 49 class G4Material; 40 class G4Material; 50 class G4UniformMagField; 41 class G4UniformMagField; 51 << 52 class F02DetectorMessenger; 42 class F02DetectorMessenger; 53 class F02CalorimeterSD; 43 class F02CalorimeterSD; >> 44 class F02ElectricFieldSetup; 54 45 55 //....oooOO0OOooo........oooOO0OOooo........oo << 56 46 57 class F02DetectorConstruction : public G4VUser 47 class F02DetectorConstruction : public G4VUserDetectorConstruction 58 { 48 { 59 public: 49 public: >> 50 60 F02DetectorConstruction(); 51 F02DetectorConstruction(); 61 ~F02DetectorConstruction() override; << 52 ~F02DetectorConstruction(); 62 << 63 void SetAbsorberMaterial(G4String); << 64 void SetAbsorberThickness(G4double); << 65 void SetAbsorberRadius(G4double); << 66 << 67 void SetAbsorberZpos(G4double); << 68 << 69 void SetWorldMaterial(G4String); << 70 void SetWorldSizeZ(G4double); << 71 void SetWorldSizeR(G4double); << 72 << 73 void SetFieldValue(G4ThreeVector value); << 74 << 75 G4VPhysicalVolume* Construct() override; << 76 void ConstructSDandField() override; << 77 53 78 void PrintCalorParameters(); << 54 public: 79 << 55 80 G4Material* GetWorldMaterial() { return fW << 56 void SetAbsorberMaterial (G4String); 81 G4double GetWorldSizeZ() { return fWorldSi << 57 void SetAbsorberThickness(G4double); 82 G4double GetWorldSizeR() { return fWorldSi << 58 void SetAbsorberRadius(G4double); 83 << 59 84 G4double GetAbsorberZpos() { return fZAbso << 60 void SetAbsorberZpos(G4double); 85 G4double GetZStartAbs() { return fZStartAb << 61 86 G4double GetZEndAbs() { return fZEndAbs; } << 62 void SetWorldMaterial(G4String); 87 << 63 void SetWorldSizeZ(G4double); 88 G4Material* GetAbsorberMaterial() { return << 64 void SetWorldSizeR(G4double); 89 G4double GetAbsorberThickness() { return f << 65 90 G4double GetAbsorberRadius() { return fAbs << 66 G4VPhysicalVolume* Construct(); 91 << 92 const G4VPhysicalVolume* GetPhysiWorld() { << 93 const G4VPhysicalVolume* GetAbsorber() { r << 94 G4LogicalVolume* GetLogicalAbsorber() { re << 95 67 >> 68 void UpdateGeometry(); >> 69 >> 70 public: >> 71 >> 72 void PrintCalorParameters(); >> 73 >> 74 G4Material* GetWorldMaterial() {return WorldMaterial;}; >> 75 G4double GetWorldSizeZ() {return WorldSizeZ;}; >> 76 G4double GetWorldSizeR() {return WorldSizeR;}; >> 77 >> 78 G4double GetAbsorberZpos() {return zAbsorber;}; >> 79 G4double GetzstartAbs() {return zstartAbs;}; >> 80 G4double GetzendAbs() {return zendAbs;}; >> 81 >> 82 G4Material* GetAbsorberMaterial() {return AbsorberMaterial;}; >> 83 G4double GetAbsorberThickness() {return AbsorberThickness;}; >> 84 G4double GetAbsorberRadius() {return AbsorberRadius;}; >> 85 >> 86 const G4VPhysicalVolume* GetphysiWorld() {return physiWorld;}; >> 87 const G4VPhysicalVolume* GetAbsorber() {return physiAbsorber;}; >> 88 G4LogicalVolume* GetLogicalAbsorber() {return logicAbsorber;}; >> 89 96 private: 90 private: 97 void DefineMaterials(); << 91 98 void ComputeCalorParameters(); << 92 G4Tubs* solidWorld; // pointer to the solid World 99 G4VPhysicalVolume* ConstructCalorimeter(); << 93 G4LogicalVolume* logicWorld; // pointer to the logical World 100 << 94 G4VPhysicalVolume* physiWorld; // pointer to the physical World 101 F02DetectorMessenger* fDetectorMessenger = << 95 102 G4Cache<F02CalorimeterSD*> fCalorimeterSD << 96 G4Tubs* solidAbsorber; // pointer to the solid Absorber 103 << 97 G4LogicalVolume* logicAbsorber; // pointer to the logical Absorber 104 G4Tubs* fSolidWorld = nullptr; // pointer << 98 G4VPhysicalVolume* physiAbsorber; // pointer to the physical Absorber 105 G4LogicalVolume* fLogicWorld = nullptr; / << 99 106 G4VPhysicalVolume* fPhysiWorld = nullptr; << 100 F02ElectricFieldSetup* fEmFieldSetup; // pointer to the field helper 107 << 101 F02DetectorMessenger* detectorMessenger; // pointer to the Messenger 108 G4Tubs* fSolidAbsorber = nullptr; // poin << 102 F02CalorimeterSD* calorimeterSD; // pointer to the sensitive detector 109 G4LogicalVolume* fLogicAbsorber = nullptr; << 103 110 G4VPhysicalVolume* fPhysiAbsorber = nullpt << 104 G4Material* AbsorberMaterial; 111 << 105 G4double AbsorberThickness; 112 G4Material* fAbsorberMaterial = nullptr; << 106 G4double AbsorberRadius; 113 G4double fAbsorberThickness = 4. * CLHEP:: << 107 G4bool worldchanged; 114 G4double fAbsorberRadius = 10. * CLHEP::cm << 108 115 G4bool fWorldChanged; << 109 G4double zAbsorber ; 116 << 110 G4double zstartAbs , zendAbs ; 117 G4double fZAbsorber = 36. * CLHEP::cm; << 111 118 G4double fZStartAbs = 0.; << 112 G4Material* WorldMaterial; 119 G4double fZEndAbs = 0.; << 113 G4double WorldSizeR; 120 << 114 G4double WorldSizeZ; 121 G4Material* fWorldMaterial = nullptr; << 115 122 G4double fWorldSizeR = 20. * CLHEP::cm; << 116 private: 123 G4double fWorldSizeZ = 80. * CLHEP::cm; << 117 124 << 118 void DefineMaterials(); 125 G4ThreeVector fFieldVector = {0., 100000.0 << 119 void ComputeCalorParameters(); >> 120 G4VPhysicalVolume* ConstructCalorimeter(); 126 }; 121 }; 127 122 128 //....oooOO0OOooo........oooOO0OOooo........oo << 123 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 129 124 130 inline void F02DetectorConstruction::ComputeCa 125 inline void F02DetectorConstruction::ComputeCalorParameters() 131 { 126 { 132 // Compute derived parameters of the calorim 127 // Compute derived parameters of the calorimeter 133 128 134 fZStartAbs = fZAbsorber - 0.5 * fAbsorberThi << 129 zstartAbs = zAbsorber-0.5*AbsorberThickness; 135 fZEndAbs = fZAbsorber + 0.5 * fAbsorberThick << 130 zendAbs = zAbsorber+0.5*AbsorberThickness; >> 131 136 } 132 } 137 133 138 #endif 134 #endif 139 135