GGS(GenericGEANT4Simulation)Software  2.6.0
 All Data Structures Namespaces Files Functions Variables Typedefs Macros
GGSMaterials.h
Go to the documentation of this file.
1 /*
2  * GGSMaterials.h
3  *
4  * Created on: 2010-10-06
5  * Authors: Emiliano Mocchiutti & Cecilia Pizzolotto
6  */
7 
10 #ifndef GGSMATERIALS_H
11 #define GGSMATERIALS_H
12 
13 // GEANT headers
14 #include "G4Material.hh"
15 #include "G4VUserDetectorConstruction.hh"
16 #include "globals.hh"
17 
18 
19 
24 class GGSMaterials {
25 public:
27  GGSMaterials();
28 
29  ~GGSMaterials();
30 
31 private:
32  G4Element* _H;
33  G4Element* _He;
34  G4Element* _C;
35  G4Element* _N;
36  G4Element* _O;
37  G4Element* _Al;
38  G4Element* _Si;
39  G4Element* _Fe;
40  G4Element* _Ni;
41  G4Element* _Cu;
42  G4Element* _I;
43  G4Element* _Cs;
44  G4Element* _W;
45  G4Element* _Pb;
46  G4Element* _Ge;
47  G4Element* _Bi;
48 
49  G4Material* _Tungsten;
50  G4Material* _He3;
51  G4Material* _CsI;
52  G4Material* _Air;
53  G4Material* _Aluminium;
54  G4Material* _Silicon;
55  G4Material* _Iron;
56  G4Material* _Lead;
57  G4Material* _BGO;
58  G4Material* _PWO;
59  G4Material* _PCB;
60  G4Material* _PVT;
61  G4Material* _PS;
62  G4Material* _Mylar;
63  G4Material* _Vacuum;
64 
65 };
66 
67 #endif // GGSMATERIALS_H
GGSMaterials()
Constructor.
~GGSMaterials()
Destructor.
Definition of GGS materials.
Definition: GGSMaterials.h:24