source: trunk/examples/extended/parameterisations/gflash/include/ExGflashDetectorConstruction.hh@ 812

Last change on this file since 812 was 807, checked in by garnier, 17 years ago

update

File size: 3.2 KB
RevLine 
[807]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#ifndef ExGflashDetectorConstruction_h
27#define ExGflashDetectorConstruction_h 1
28
29#include "globals.hh"
30#include "G4VUserDetectorConstruction.hh"
31
32
33class G4Box;
34class G4LogicalVolume;
35class G4VPhysicalVolume;
36class GFlashHomoShowerParameterisation;
37class GFlashHitMaker;
38class GFlashShowerModel;
39class GFlashParticleBounds;
40
41
42class ExGflashDetectorConstruction : public G4VUserDetectorConstruction
43{
44 public:
45 ExGflashDetectorConstruction();
46 ~ExGflashDetectorConstruction();
47 G4VPhysicalVolume* Construct();
48
49 const G4VPhysicalVolume* GetCristal(int num__crystal)
50 {return m_crystal_phys[num__crystal];};
51
52
53 private:
54 G4LogicalVolume* m_experimentalHall_log;
55 G4LogicalVolume* m_calo_log;
56
57 G4VPhysicalVolume* m_experimentalHall_phys;
58 G4VPhysicalVolume* m_calo_phys;
59
60 G4Box *m_experimentalHall_box;
61
62 G4double m_experimentalHall_x;
63 G4double m_experimentalHall_y;
64 G4double m_experimentalHall_z;
65
66 G4double m_calo_xside;
67 G4double m_calo_yside;
68 G4double m_calo_zside;
69
70 G4int m_NbOfCrystals; // Nb of chambers in the tracker region
71 G4double m_CrystalWidth; // width of the chambers
72 G4double m_CrystalWidht;
73 G4double m_CrystalLenght;
74 //@@@ ExGflashDetectorConstruction : wie mache ich das am besten ?
75 G4Box *m_crystal[100];
76 G4LogicalVolume* m_crystal_log[100];
77 G4VPhysicalVolume* m_crystal_phys[100];
78
79 // Gflash members
80 GFlashHomoShowerParameterisation *m_theParameterisation;
81 GFlashHitMaker *m_theHMaker;
82 GFlashParticleBounds *m_theParticleBounds;
83 GFlashShowerModel* m_theFastShowerModel;
84 G4Region* aRegion;
85};
86
87#endif
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
Note: See TracBrowser for help on using the repository browser.