Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file persistency/gdml/G03/include/G03Dete 27 /// \brief Definition of the G03DetectorConstr 28 // 29 // 30 // 31 // Class G03DetectorConstruction 32 // 33 // A detector construction class loading the g 34 // 35 // ------------------------------------------- 36 37 #ifndef G03DetectorConstruction_H 38 #define G03DetectorConstruction_H 1 39 40 #include "G4GDMLParser.hh" 41 #include "G4VUserDetectorConstruction.hh" 42 #include "globals.hh" 43 44 class G4Material; 45 class G03DetectorMessenger; 46 47 /// Detector construction for the GDML extensi 48 49 class G03DetectorConstruction : public G4VUser 50 { 51 public: 52 // Constructor and destructor 53 // 54 G03DetectorConstruction(); 55 ~G03DetectorConstruction(); 56 57 // Construction of Detector 58 // 59 virtual G4VPhysicalVolume* Construct(); 60 61 // Make List of materials 62 // 63 void ListOfMaterials(); 64 65 // Reading/writing GDML 66 // 67 void SetReadFile(const G4String& fname); 68 void SetWriteFile(const G4String& fname); 69 70 private: 71 G4Material* fAir; 72 G4Material* fAluminum; 73 G4Material* fPb; 74 G4Material* fXenon; 75 76 // Extended reader 77 // 78 G4GDMLReadStructure* fReader; 79 80 // Extended writer 81 // 82 G4GDMLWriteStructure* fWriter; 83 84 // GDMLparser 85 // 86 G4GDMLParser* fParser; 87 88 // Read/write Settings 89 // 90 G4String fReadFile, fWriteFile; 91 G4bool fWritingChoice; 92 93 // Detector Messenger 94 // 95 G03DetectorMessenger* fDetectorMessenger; 96 }; 97 98 // ------------------------------------------- 99 100 #endif 101