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 // << 27 /// \file medical/GammaTherapy/include/Detecto << 28 /// \brief Definition of the DetectorConstruct << 29 // << 30 #ifndef DetectorConstruction_h 26 #ifndef DetectorConstruction_h 31 #define DetectorConstruction_h 1 27 #define DetectorConstruction_h 1 32 28 33 // ------------------------------------------- 29 // ------------------------------------------------------------- 34 // GEANT4 test IBREM 30 // GEANT4 test IBREM 35 // 31 // 36 // Authors: V.Grichine, V.Ivanchenko 32 // Authors: V.Grichine, V.Ivanchenko 37 // 33 // 38 // Modified: 34 // Modified: 39 // 35 // 40 // 18-02-03 V.Ivanchenko create 36 // 18-02-03 V.Ivanchenko create 41 // 37 // 42 // ------------------------------------------- 38 // ------------------------------------------------------------- 43 39 44 //....oooOO0OOooo........oooOO0OOooo........oo << 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 45 //....oooOO0OOooo........oooOO0OOooo........oo << 41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 46 42 47 #include "G4Material.hh" << 48 #include "G4VPhysicalVolume.hh" << 49 #include "G4VUserDetectorConstruction.hh" 43 #include "G4VUserDetectorConstruction.hh" >> 44 #include "G4VPhysicalVolume.hh" >> 45 #include "G4Material.hh" 50 46 51 //....oooOO0OOooo........oooOO0OOooo........oo << 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 52 48 53 class CheckVolumeSD; 49 class CheckVolumeSD; 54 class PhantomSD; 50 class PhantomSD; 55 class TargetSD; 51 class TargetSD; 56 class DetectorMessenger; 52 class DetectorMessenger; 57 class G4LogicalVolume; 53 class G4LogicalVolume; 58 54 59 class DetectorConstruction : public G4VUserDet 55 class DetectorConstruction : public G4VUserDetectorConstruction 60 { 56 { 61 public: << 57 public: 62 DetectorConstruction(); << 63 virtual ~DetectorConstruction(); << 64 << 65 G4VPhysicalVolume* Construct(); << 66 << 67 void SetTarget1Material(const G4String& m) << 68 void SetTarget2Material(const G4String& m) << 69 << 70 inline G4double GetGeneratorPosZ() const { << 71 << 72 inline void SetGap(G4double val) { fDelta << 73 inline void SetTarget1Z(G4double val) { fT << 74 inline void SetTarget2Z(G4double val) { fT << 75 inline void SetMylarZ(G4double val) { fMyl << 76 inline void SetCheckShiftZ(G4double val) { << 77 inline void SetAbsorberZ(G4double val) { f << 78 inline void SetAbsorberShiftZ(G4double val << 79 << 80 inline void SetNumberDivZ(G4int val) { fNu << 81 inline void SetNumberDivR(G4int val) { fNu << 82 << 83 const G4VPhysicalVolume* GetCheckVolume() << 84 const G4VPhysicalVolume* GetGasVolume() co << 85 const G4VPhysicalVolume* GetPhantom() cons << 86 const G4VPhysicalVolume* GetTarget1() cons << 87 const G4VPhysicalVolume* GetTarget2() cons << 88 << 89 G4double GetAbsorberZ() const { return fPh << 90 G4double GetAbsorberR() const { return fAb << 91 G4double GetScoreZ() const { return fAbsor << 92 << 93 G4int GetNumberDivZ() const { return fNumZ << 94 G4int GetNumberDivR() const { return fNumR << 95 << 96 void SetMaxEnergy(G4double e) { fMaxEnergy << 97 inline G4double GetMaxEnergy() const { ret << 98 G4int GetNumberDivE() const { return fNumE << 99 inline void SetNumberDivE(G4int val) { fNu << 100 << 101 void SetVerbose(G4bool v) { fVerbose = v; << 102 inline G4bool GetVerbose() const { return << 103 58 104 void DumpGeometryParameters(); << 59 DetectorConstruction(); >> 60 ~DetectorConstruction(); 105 61 106 private: << 62 public: 107 void InitialiseGeometryParameters(); << 108 63 109 DetectorConstruction& operator=(const Dete << 64 G4VPhysicalVolume* Construct(); 110 DetectorConstruction(const DetectorConstru << 65 G4double GetGeneratorPosZ() const {return fGeneratorPosZ;}; 111 void ConstructSDandField(); << 112 66 113 G4bool fVerbose; << 67 void setGap(G4double val) {fDelta = val;}; >> 68 void setTarget1Z(G4double val) {fTarget1Z = val;}; >> 69 void setTarget2Z(G4double val) {fTarget2Z = val;}; >> 70 void setMylarZ(G4double val) {fMylarVolumeZ = val;}; >> 71 void setCheckShiftZ(G4double val) {fCheckShiftZ = val;}; >> 72 void setAbsorberZ(G4double val) {fAbsorberZ = val;}; >> 73 void setAbsorberShiftZ(G4double val) {fAbsorberShiftZ = val;}; 114 74 115 G4int fNumZ; << 75 void setTarget1Material(const G4String& m); 116 G4int fNumR; << 76 void setTarget2Material(const G4String& m); >> 77 void UpdateGeometry(); 117 78 118 G4int fNumE; << 79 private: // methods 119 G4double fMaxEnergy; << 120 80 121 G4LogicalVolume* fLogicCheckVolume; << 81 void Initialise(); 122 std::vector<G4LogicalVolume*> fLogicRing; << 82 void DefineMaterials(); 123 G4LogicalVolume* fLogicPh; << 83 void InitialiseGeometryParameters(); 124 G4LogicalVolume* fLogicAbsorber; << 84 G4VPhysicalVolume* ConstructVolumes(); 125 85 126 G4double fWorldXY, fWorldZ; << 86 private: // fields 127 G4double fDelta; << 128 G4double fGeneratorPosZ; << 129 87 130 G4double fTargetRadius, fTarget1Z, fTarget << 88 CheckVolumeSD* checkSD; 131 G4double fTarget2Z, fTarget2PosZ; << 89 PhantomSD* calorimeterSD; >> 90 TargetSD* targetSD; >> 91 G4double fWorldXY, fWorldZ; >> 92 G4double fDelta; >> 93 G4double fGeneratorPosZ; 132 94 133 G4double fGasVolumeRadius, fGasVolumeZ, fG << 95 G4double fTargetRadius, fTarget1Z, fTarget1PosZ; 134 G4double fAirZ, fMylarVolumeZ, fMylarPosZ; << 96 G4double fTarget2Z, fTarget2PosZ; 135 G4double fCheckVolumeRadius, fCheckVolumeZ << 136 G4double fTargetVolumeZ, fTargetVolumePosZ << 137 G4double fShiftZPh; << 138 97 139 G4double fPhantomRadius, fPhantomZ, fPhant << 98 G4double fGasVolumeRadius,fGasVolumeZ, fGasVolumePosZ, fAirZ, fMylarVolumeZ, fMylarPosZ; 140 G4double fAbsorberRadius, fAbsorberZ, fAbs << 99 G4double fCheckVolumeRadius, fCheckVolumeZ, fCheckShiftZ, fCheckVolumePosZ; 141 G4double fDistanceVacuumTarget, fWindowZ, << 100 G4double fTargetVolumeZ, fTargetVolumePosZ; 142 101 143 G4Material* fWorldMaterial; << 102 G4double fPhantomRadius, fPhantomZ, fPhantomPosZ; >> 103 G4double fAbsorberRadius, fAbsorberZ, fAbsorberShiftZ, fAbsorberPosZ; >> 104 G4double fDistanceVacuumTarget, fWindowZ, fWindowPosZ; 144 105 145 G4Material* fTarget1Material; << 106 G4Material* fWorldMaterial; 146 G4Material* fTarget2Material; << 147 G4Material* fMylar; << 148 G4Material* fWindowMaterial; << 149 107 150 G4Material* fLightMaterial; << 108 G4Material* fTarget1Material; 151 G4Material* fAbsorberMaterial; << 109 G4Material* fTarget2Material; >> 110 G4Material* fMylar; >> 111 G4Material* fWindowMaterial; 152 112 153 G4LogicalVolume* fLogicTarget1; << 113 G4Material* fLightMaterial; 154 G4LogicalVolume* fLogicTarget2; << 114 G4Material* fAbsorberMaterial; 155 115 156 G4VPhysicalVolume* fCheckVolume; << 116 G4LogicalVolume* logicTarget1; 157 G4VPhysicalVolume* fGasVolume; << 117 G4LogicalVolume* logicTarget2; 158 G4VPhysicalVolume* fPhantom; << 159 G4VPhysicalVolume* fTarget1; << 160 G4VPhysicalVolume* fTarget2; << 161 118 162 DetectorMessenger* fMessenger; << 119 DetectorMessenger* dMessenger; 163 }; 120 }; 164 121 165 //....oooOO0OOooo........oooOO0OOooo........oo << 122 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 166 123 167 #endif 124 #endif 168 125