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 persistency/gdml/G03/include/G03Dete 26 /// \file persistency/gdml/G03/include/G03DetectorConstruction.hh 27 /// \brief Definition of the G03DetectorConstr 27 /// \brief Definition of the G03DetectorConstruction class 28 // 28 // 29 // 29 // 30 // 30 // 31 // Class G03DetectorConstruction 31 // Class G03DetectorConstruction 32 // 32 // 33 // A detector construction class loading the g 33 // A detector construction class loading the geometry from GDML files. 34 // 34 // 35 // ------------------------------------------- 35 // ---------------------------------------------------------------------------- 36 36 37 #ifndef G03DetectorConstruction_H 37 #ifndef G03DetectorConstruction_H 38 #define G03DetectorConstruction_H 1 38 #define G03DetectorConstruction_H 1 39 39 40 #include "G4GDMLParser.hh" << 41 #include "G4VUserDetectorConstruction.hh" << 42 #include "globals.hh" 40 #include "globals.hh" >> 41 #include "G4VUserDetectorConstruction.hh" >> 42 #include "G4GDMLParser.hh" 43 43 44 class G4Material; 44 class G4Material; 45 class G03DetectorMessenger; 45 class G03DetectorMessenger; 46 46 47 /// Detector construction for the GDML extensi 47 /// Detector construction for the GDML extensions example 48 48 49 class G03DetectorConstruction : public G4VUser 49 class G03DetectorConstruction : public G4VUserDetectorConstruction 50 { 50 { 51 public: 51 public: >> 52 52 // Constructor and destructor 53 // Constructor and destructor 53 // 54 // 54 G03DetectorConstruction(); 55 G03DetectorConstruction(); 55 ~G03DetectorConstruction(); << 56 ~G03DetectorConstruction(); 56 57 57 // Construction of Detector 58 // Construction of Detector 58 // 59 // 59 virtual G4VPhysicalVolume* Construct(); 60 virtual G4VPhysicalVolume* Construct(); 60 61 61 // Make List of materials 62 // Make List of materials 62 // 63 // 63 void ListOfMaterials(); 64 void ListOfMaterials(); 64 65 65 // Reading/writing GDML 66 // Reading/writing GDML 66 // 67 // 67 void SetReadFile(const G4String& fname); << 68 void SetReadFile( const G4String& fname ); 68 void SetWriteFile(const G4String& fname); << 69 void SetWriteFile( const G4String& fname ); 69 70 70 private: 71 private: 71 G4Material* fAir; << 72 72 G4Material* fAluminum; << 73 G4Material* fAir ; >> 74 G4Material* fAluminum ; 73 G4Material* fPb; 75 G4Material* fPb; 74 G4Material* fXenon; 76 G4Material* fXenon; 75 77 76 // Extended reader 78 // Extended reader 77 // 79 // 78 G4GDMLReadStructure* fReader; 80 G4GDMLReadStructure* fReader; 79 81 80 // Extended writer 82 // Extended writer 81 // 83 // 82 G4GDMLWriteStructure* fWriter; 84 G4GDMLWriteStructure* fWriter; 83 85 84 // GDMLparser 86 // GDMLparser 85 // 87 // 86 G4GDMLParser* fParser; 88 G4GDMLParser* fParser; 87 << 89 88 // Read/write Settings 90 // Read/write Settings 89 // 91 // 90 G4String fReadFile, fWriteFile; 92 G4String fReadFile, fWriteFile; 91 G4bool fWritingChoice; 93 G4bool fWritingChoice; 92 << 94 93 // Detector Messenger 95 // Detector Messenger 94 // 96 // 95 G03DetectorMessenger* fDetectorMessenger; 97 G03DetectorMessenger* fDetectorMessenger; 96 }; 98 }; 97 99 98 // ------------------------------------------- 100 // ---------------------------------------------------------------------------- 99 101 100 #endif 102 #endif 101 103