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 hadronic/Hadr01/include/DetectorCons << 26 // $Id: DetectorConstruction.hh,v 1.4 2006/06/29 17:23:28 gunter Exp $ 27 /// \brief Definition of the DetectorConstruct << 27 // GEANT4 tag $Name: geant4-09-00 $ 28 // << 29 // 28 // 30 ////////////////////////////////////////////// 29 ///////////////////////////////////////////////////////////////////////// 31 // 30 // 32 // DetectorConstruction 31 // DetectorConstruction 33 // 32 // 34 // Created: 31.01.2003 V.Ivanchenko 33 // Created: 31.01.2003 V.Ivanchenko 35 // 34 // 36 // Modified: 35 // Modified: 37 // 04.06.2006 Adoptation of Hadr01 (V.Ivanchen << 36 // 04.06.2006 Adoptation of hadr01 (V.Ivanchenko) 38 // 37 // 39 ////////////////////////////////////////////// 38 //////////////////////////////////////////////////////////////////////// 40 // << 39 // 41 40 42 #ifndef DetectorConstruction_h 41 #ifndef DetectorConstruction_h 43 #define DetectorConstruction_h 1 42 #define DetectorConstruction_h 1 44 43 45 #include "G4Material.hh" << 46 #include "G4VUserDetectorConstruction.hh" 44 #include "G4VUserDetectorConstruction.hh" 47 #include "globals.hh" 45 #include "globals.hh" >> 46 #include "G4Material.hh" 48 47 49 class CheckVolumeSD; 48 class CheckVolumeSD; 50 class TargetSD; 49 class TargetSD; 51 class G4Tubs; << 52 class G4LogicalVolume; 50 class G4LogicalVolume; 53 class G4VPhysicalVolume; << 54 class DetectorMessenger; 51 class DetectorMessenger; 55 52 56 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 57 54 58 class DetectorConstruction : public G4VUserDet 55 class DetectorConstruction : public G4VUserDetectorConstruction 59 { 56 { 60 public: << 57 public: 61 DetectorConstruction(); << 62 ~DetectorConstruction() override; << 63 58 64 G4VPhysicalVolume* Construct() override; << 59 DetectorConstruction(); 65 void ConstructSDandField() override; << 60 virtual ~DetectorConstruction(); 66 61 67 void SetWorldMaterial(const G4String&); << 62 public: 68 void SetTargetMaterial(const G4String&); << 69 63 70 DetectorConstruction& operator=(const Dete << 64 G4VPhysicalVolume* Construct(); 71 DetectorConstruction(const DetectorConstru << 72 65 73 private: << 66 void SetWorldMaterial(const G4String&); 74 void ComputeGeomParameters(); << 67 void SetTargetMaterial(const G4String&); 75 68 76 G4Material* fTargetMaterial; << 69 void SetTargetRadius(G4double val); 77 G4Material* fWorldMaterial; << 78 70 79 G4Tubs* fSolidW; << 71 void UpdateGeometry(); 80 G4Tubs* fSolidA; << 81 G4Tubs* fSolidC; << 82 72 83 G4LogicalVolume* fLogicTarget; << 73 private: 84 G4LogicalVolume* fLogicCheck; << 85 G4LogicalVolume* fLogicWorld; << 86 74 87 G4VPhysicalVolume* fPhysWorld; << 75 DetectorConstruction & operator=(const DetectorConstruction &right); >> 76 DetectorConstruction(const DetectorConstruction&); 88 77 89 DetectorMessenger* fDetectorMessenger; << 78 G4double radius; 90 79 91 G4double fRadius; << 80 G4Material* targetMaterial; 92 G4double fCheckR; << 81 G4Material* worldMaterial; 93 G4double fWorldR; << 82 94 G4double fTargetZ; << 83 CheckVolumeSD* checkSD; 95 G4double fCheckZ; << 84 TargetSD* targetSD; 96 G4double fWorldZ; << 85 97 G4double fSliceZ; << 86 G4LogicalVolume* logicTarget; >> 87 G4LogicalVolume* logicCheck; >> 88 G4LogicalVolume* logicWorld; >> 89 >> 90 DetectorMessenger* detectorMessenger; 98 91 99 G4int fSlices; << 100 G4bool fInitialized; << 101 }; 92 }; 102 93 103 //....oooOO0OOooo........oooOO0OOooo........oo 94 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 104 95 105 #endif 96 #endif >> 97 106 98