Geant4  10.02.p01
DetectorConstruction.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 //
28 //
29 //
30 // $Id: DetectorConstruction.hh 77206 2013-11-22 01:33:52Z adotti $
31 //
32 //
33 
34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
36 
37 #ifndef DetectorConstruction_h
38 #define DetectorConstruction_h 1
39 
41 #include "globals.hh"
42 
43 class G4Box;
44 class G4LogicalVolume;
45 class G4VPhysicalVolume;
46 class G4Material;
47 class DetectorMessenger;
48 
49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50 
52 {
53  public:
54 
56  virtual ~DetectorConstruction();
57 
58  public:
59 
62 
63  void SetGapMaterial (G4String);
65 
66  void SetCalorSizeYZ(G4double);
67  void SetNbOfLayers (G4int);
68 
69  virtual G4VPhysicalVolume* Construct();
70 
71  public:
72 
73  void PrintCalorParameters();
74 
77 
80 
82 
85 
88 
91  const G4VPhysicalVolume* GetGap() {return fPhysiGap;};
92 
93  private:
94 
97 
100 
103 
106 
110 
111  G4Box* fSolidWorld; //pointer to the solid World
112  G4LogicalVolume* fLogicWorld; //pointer to the logical World
113  G4VPhysicalVolume* fPhysiWorld; //pointer to the physical World
114 
115  G4Box* fSolidCalor; //pointer to the solid Calor
116  G4LogicalVolume* fLogicCalor; //pointer to the logical Calor
117  G4VPhysicalVolume* fPhysiCalor; //pointer to the physical Calor
118 
119  G4Box* fSolidLayer; //pointer to the solid Layer
120  G4LogicalVolume* fLogicLayer; //pointer to the logical Layer
121  G4VPhysicalVolume* fPhysiLayer; //pointer to the physical Layer
122 
123  G4Box* fSolidAbsorber; //pointer to the solid Absorber
124  G4LogicalVolume* fLogicAbsorber; //pointer to the logical Absorber
125  G4VPhysicalVolume* fPhysiAbsorber; //pointer to the physical Absorber
126 
127  G4Box* fSolidGap; //pointer to the solid Gap
128  G4LogicalVolume* fLogicGap; //pointer to the logical Gap
129  G4VPhysicalVolume* fPhysiGap; //pointer to the physical Gap
130 
131  DetectorMessenger* fDetectorMessenger; //pointer to the Messenger
132 
133  private:
134 
135  void DefineMaterials();
136  void ComputeCalorParameters();
138 };
139 
140 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
141 
143 {
144  // Compute derived parameters of the calorimeter
147 
149 }
150 
151 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
152 
153 #endif
154 
G4LogicalVolume * fLogicLayer
G4VPhysicalVolume * fPhysiGap
Definition: G4Box.hh:64
G4VPhysicalVolume * Construct()
const G4VPhysicalVolume * GetAbsorber()
G4VPhysicalVolume * fPhysiLayer
int G4int
Definition: G4Types.hh:78
void SetAbsorberThickness(G4double)
const G4VPhysicalVolume * GetphysiWorld()
const G4VPhysicalVolume * GetGap()
G4LogicalVolume * fLogicWorld
G4Material * GetAbsorberMaterial()
G4VPhysicalVolume * fPhysiWorld
G4LogicalVolume * fLogicCalor
G4VPhysicalVolume * fPhysiCalor
G4LogicalVolume * fLogicAbsorber
G4LogicalVolume * fLogicGap
G4VPhysicalVolume * ConstructCalorimeter()
G4VPhysicalVolume * fPhysiAbsorber
Detector construction class to demonstrate various ways of placement.
double G4double
Definition: G4Types.hh:76
void SetAbsorberMaterial(G4String)
Messenger class that defines commands for DetectorConstruction.
DetectorMessenger * fDetectorMessenger