Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
exrdmDetectorConstruction.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: exrdmDetectorConstruction.hh 68007 2013-03-13 11:28:03Z gcosmo $
27 //
28 /// \file radioactivedecay/rdecay02/include/exrdmDetectorConstruction.hh
29 /// \brief Definition of the exrdmDetectorConstruction class
30 //
31 #ifndef exrdmDetectorConstruction_h
32 #define exrdmDetectorConstruction_h 1
33 
34 #include "globals.hh"
36 //#include "exrdmMagneticField.hh"
37 
38 class G4Tubs;
39 class G4LogicalVolume;
40 class G4VPhysicalVolume;
41 class G4Material;
42 class G4Region;
44 class exrdmMaterial;
45 
46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47 
49 {
50  public:
51 
54 
55  public:
56 
57  virtual G4VPhysicalVolume* Construct();
58 
59  const
60  G4VPhysicalVolume* GetDetector() {return fPhysiDetector;};
61 
62  G4double GetDetectoFullLength() {return fDetectorLength;};
63  G4double GetTargetFullLength() {return fTargetLength;};
64  G4double GetWorldFullLength() {return fWorldLength;};
65  G4double GetDetectorThickness() {return fDetectorThickness;};
66  G4double GetTargetRadius() {return fTargetRadius;};
67  G4double GetWorldRadius() {return fWorldRadius;};
68 
71 
72  void SetTargetRadius (G4double value) { fTargetRadius = value; };
73  void SetDetectorThickness(G4double value){ fDetectorThickness = value;};
74  void SetTargetLength (G4double value) { fTargetLength = value; };
75  void SetDetectorLength(G4double value){ fDetectorLength = value;};
76 
77  private:
78  void DefineMaterials();
79 
80  private:
81 
82  G4Tubs* fSolidWorld; // pointer to the solid envelope
83  G4LogicalVolume* fLogicWorld; // pointer to the logical envelope
84  G4VPhysicalVolume* fPhysiWorld; // pointer to the physical envelope
85 
86  G4Tubs* fSolidTarget; // pointer to the solid Target
87  G4LogicalVolume* fLogicTarget; // pointer to the logical Target
88  G4VPhysicalVolume* fPhysiTarget; // pointer to the physical Target
89 
90  G4Tubs* fSolidDetector; // pointer to the solid Detector
91  G4LogicalVolume* fLogicDetector; // pointer to the logical Detector
92  G4VPhysicalVolume* fPhysiDetector; // pointer to the physical Detector
93 
94  exrdmDetectorMessenger* fDetectorMessenger; // pointer to the Messenger
95  exrdmMaterial* fMaterialsManager; // material manager
96 
97  G4Material* fDefaultMater; // Default material
98  G4Material* fTargetMater; // Target material
99  G4Material* fDetectorMater; // Detector material
100 
101 
102  G4double fTargetLength; // Full length of the target
103  G4double fTargetRadius; // Radius of the target
104  G4double fDetectorLength; // Full length of the Detector
105  G4double fDetectorThickness; // Thickness of the Detector
106  G4double fWorldLength; // Full length the world volume
107  G4double fWorldRadius; // Radius of the world volume
108 
109 
110 
111  G4Region* fTargetRegion;
112  G4Region* fDetectorRegion;
113 
114 };
115 
116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
117 
118 #endif
Definition: G4Tubs.hh:84
const XML_Char int const XML_Char * value
double G4double
Definition: G4Types.hh:76
void SetDetectorThickness(G4double value)
void SetDetectorLength(G4double value)
virtual G4VPhysicalVolume * Construct()
const G4VPhysicalVolume * GetDetector()