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 // 26 // 27 /// \file B2/B2a/include/DetectorConstruction. 27 /// \file B2/B2a/include/DetectorConstruction.hh 28 /// \brief Definition of the B2a::DetectorCons 28 /// \brief Definition of the B2a::DetectorConstruction class 29 29 30 #ifndef B2aDetectorConstruction_h 30 #ifndef B2aDetectorConstruction_h 31 #define B2aDetectorConstruction_h 1 31 #define B2aDetectorConstruction_h 1 32 32 33 #include "G4VUserDetectorConstruction.hh" << 34 #include "G4Threading.hh" << 35 #include "globals.hh" 33 #include "globals.hh" >> 34 #include "G4VUserDetectorConstruction.hh" >> 35 #include "tls.hh" 36 36 37 class G4VPhysicalVolume; 37 class G4VPhysicalVolume; 38 class G4LogicalVolume; 38 class G4LogicalVolume; 39 class G4Material; 39 class G4Material; 40 class G4UserLimits; 40 class G4UserLimits; 41 class G4GlobalMagFieldMessenger; 41 class G4GlobalMagFieldMessenger; 42 42 43 namespace B2a 43 namespace B2a 44 { 44 { 45 45 46 class DetectorMessenger; 46 class DetectorMessenger; 47 47 48 /// Detector construction class to define mate 48 /// Detector construction class to define materials, geometry 49 /// and global uniform magnetic field. 49 /// and global uniform magnetic field. 50 50 51 class DetectorConstruction : public G4VUserDet 51 class DetectorConstruction : public G4VUserDetectorConstruction 52 { 52 { 53 public: 53 public: 54 DetectorConstruction(); 54 DetectorConstruction(); 55 ~DetectorConstruction() override; 55 ~DetectorConstruction() override; 56 56 57 public: 57 public: 58 G4VPhysicalVolume* Construct() override; 58 G4VPhysicalVolume* Construct() override; 59 void ConstructSDandField() override; 59 void ConstructSDandField() override; 60 60 61 // Set methods 61 // Set methods 62 void SetTargetMaterial(G4String); << 62 void SetTargetMaterial (G4String ); 63 void SetChamberMaterial(G4String); << 63 void SetChamberMaterial(G4String ); 64 void SetMaxStep(G4double); << 64 void SetMaxStep (G4double ); 65 void SetCheckOverlaps(G4bool); << 65 void SetCheckOverlaps(G4bool ); 66 66 67 private: 67 private: 68 // methods 68 // methods 69 void DefineMaterials(); 69 void DefineMaterials(); 70 G4VPhysicalVolume* DefineVolumes(); 70 G4VPhysicalVolume* DefineVolumes(); 71 71 72 // static data members 72 // static data members 73 static G4ThreadLocal G4GlobalMagFieldMesse << 73 static G4ThreadLocal G4GlobalMagFieldMessenger* fMagFieldMessenger; 74 // magnetic field messenger << 74 // magnetic field messenger 75 // data members 75 // data members 76 G4int fNbOfChambers = 0; 76 G4int fNbOfChambers = 0; 77 77 78 G4LogicalVolume* fLogicTarget = nullptr; << 78 G4LogicalVolume* fLogicTarget = nullptr; // pointer to the logical Target 79 G4LogicalVolume** fLogicChamber = nullptr; << 79 G4LogicalVolume** fLogicChamber = nullptr; // pointer to the logical Chamber 80 80 81 G4Material* fTargetMaterial = nullptr; // << 81 G4Material* fTargetMaterial = nullptr; // pointer to the target material 82 G4Material* fChamberMaterial = nullptr; / << 82 G4Material* fChamberMaterial = nullptr; // pointer to the chamber material 83 83 84 G4UserLimits* fStepLimit = nullptr; // po << 84 G4UserLimits* fStepLimit = nullptr; // pointer to user step limits 85 85 86 DetectorMessenger* fMessenger = nullptr; << 86 DetectorMessenger* fMessenger = nullptr; // messenger 87 87 88 G4bool fCheckOverlaps = true; // option t << 88 G4bool fCheckOverlaps = true; // option to activate checking of volumes overlaps 89 }; 89 }; 90 90 91 } // namespace B2a << 91 } 92 92 93 #endif 93 #endif 94 94