Geant4_10
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 // $Id: DetectorConstruction.hh 77305 2013-11-22 11:16:19Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #ifndef DetectorConstruction_h
35 #define DetectorConstruction_h 1
36 
38 #include "G4ThreeVector.hh"
39 #include "G4Material.hh"
40 #include "G4VPhysicalVolume.hh"
41 #include "globals.hh"
42 #include "G4Cache.hh"
43 
44 class G4Tubs;
45 class G4LogicalVolume;
46 class G4UniformMagField;
47 class DetectorMessenger;
49 
50 const G4int MaxBin = 500;
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
55 {
56 public:
57 
59  virtual ~DetectorConstruction();
60 
61 public:
62 
63  void SetMaterial(const G4String&);
66 
67  virtual G4VPhysicalVolume* Construct();
68 
69  virtual void ConstructSDandField();
70 
71  const
72  G4VPhysicalVolume* GetEcal() {return fPhysiEcal;};
73  G4Material* GetMaterial() {return fMaterial;};
74 
75  // Subdivision of absorber
76  G4int GetnLtot() {return fNLtot;};
77  G4int GetnRtot() {return fNRtot;};
78  G4double GetdLradl() {return fDLradl;};
79  G4double GetdRradl() {return fDRradl;};
80  G4double GetdLlength() {return fDLlength;};
81  G4double GetdRlength() {return fDRlength;};
82  G4double GetfullLength() {return fEcalLength;};
83  G4double GetfullRadius() {return fEcalRadius;};
84 
85 private:
86 
87  void DefineMaterials();
88  G4VPhysicalVolume* ConstructVolumes();
89 
90  G4int fNLtot, fNRtot; // nb of bins: longitudinal and radial
91  G4double fDLradl, fDRradl; // bin thickness (in radl unit)
92  G4double fDLlength, fDRlength; // bin thickness (in length unit)
93 
94  G4Material* fMaterial; //pointer to the material
95 
96  G4double fEcalLength; //full length of the Calorimeter
97  G4double fEcalRadius; //radius of the Calorimeter
98 
99  G4Tubs* fSolidEcal; //pointer to the solid calorimeter
100  G4LogicalVolume* fLogicEcal; //pointer to the logical calorimeter
101  G4VPhysicalVolume* fPhysiEcal; //pointer to the physical calorimeter
102 
103  DetectorMessenger* fDetectorMessenger; //pointer to the Messenger
104 
105  G4Cache<G4GlobalMagFieldMessenger*> fFieldMessenger;
106 
107 };
108 
109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
110 
111 #endif
112 
G4VPhysicalVolume * Construct()
Definition: G4Tubs.hh:84
void SetLBining(G4ThreeVector)
int G4int
Definition: G4Types.hh:78
const G4VPhysicalVolume * GetEcal()
const G4int MaxBin
void SetRBining(G4ThreeVector)
double G4double
Definition: G4Types.hh:76