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 // $Id: DetectorConstruction.hh 78550 2014-01-07 09:43:41Z 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 DetectorMessenger;
48 
49 const G4int MaxBin = 500;
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 {
55 public:
56 
58  virtual ~DetectorConstruction();
59 
60 public:
61 
62  void SetMaterial(const G4String&);
65 
66  virtual G4VPhysicalVolume* Construct();
67 
68  virtual void ConstructSDandField();
69 
70  const
73 
74  // Subdivision of absorber
75  G4int GetnLtot() {return fNLtot;};
76  G4int GetnRtot() {return fNRtot;};
77  G4double GetdLradl() {return fDLradl;};
78  G4double GetdRradl() {return fDRradl;};
83 
84 private:
85 
86  void DefineMaterials();
88 
89  G4int fNLtot, fNRtot; // nb of bins: longitudinal and radial
90  G4double fDLradl, fDRradl; // bin thickness (in radl unit)
91  G4double fDLlength, fDRlength; // bin thickness (in length unit)
92 
93  G4Material* fMaterial; //pointer to the material
94 
95  G4double fEcalLength; //full length of the Calorimeter
96  G4double fEcalRadius; //radius of the Calorimeter
97 
98  G4Tubs* fSolidEcal; //pointer to the solid calorimeter
99  G4LogicalVolume* fLogicEcal; //pointer to the logical calorimeter
100  G4VPhysicalVolume* fPhysiEcal; //pointer to the physical calorimeter
101 
102  DetectorMessenger* fDetectorMessenger; //pointer to the Messenger
103 
105 
106 };
107 
108 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109 
110 #endif
111 
G4VPhysicalVolume * fPhysiEcal
CLHEP::Hep3Vector G4ThreeVector
G4LogicalVolume * fLogicEcal
G4VPhysicalVolume * Construct()
Definition: G4Tubs.hh:85
void SetLBining(G4ThreeVector)
int G4int
Definition: G4Types.hh:78
G4Cache< G4GlobalMagFieldMessenger * > fFieldMessenger
virtual void ConstructSDandField()
const G4VPhysicalVolume * GetEcal()
const G4int MaxBin
void SetRBining(G4ThreeVector)
Detector construction class to demonstrate various ways of placement.
double G4double
Definition: G4Types.hh:76
G4VPhysicalVolume * ConstructVolumes()
Messenger class that defines commands for DetectorConstruction.
DetectorMessenger * fDetectorMessenger