VMC Examples
Version 6.8
Toggle main menu visibility
Loading...
Searching...
No Matches
examples
E03
E03a
include
Ex03DetectorConstruction.h
Go to the documentation of this file.
1
#ifndef EX03_DETECTOR_CONSTRUCTION_H
2
#define EX03_DETECTOR_CONSTRUCTION_H
3
4
//------------------------------------------------
5
// The Virtual Monte Carlo examples
6
// Copyright (C) 2014 - 2018 Ivana Hrivnacova
7
// All rights reserved.
8
//
9
// For the licensing terms see geant4_vmc/LICENSE.
10
// Contact: root-vmc@cern.ch
11
//-------------------------------------------------
12
13
/// \file Ex03DetectorConstruction.h
14
/// \brief Definition of the Ex03DetectorConstruction class
15
///
16
/// Geant4 ExampleN03 adapted to Virtual Monte Carlo: \n
17
/// Id: ExN03DetectorConstruction.hh,v 1.5 2002/01/09 17:24:11 ranjard Exp
18
/// GEANT4 tag $Name: $
19
///
20
/// \author I. Hrivnacova; IPN, Orsay
21
22
#include <map>
23
24
#include <Riostream.h>
25
#include <TObject.h>
26
#include <TString.h>
27
28
/// \ingroup E03
29
/// \brief The detector construction (via TGeo )
30
///
31
/// \date 06/03/2003
32
/// \author I. Hrivnacova; IPN, Orsay
33
34
class
Ex03DetectorConstruction
:
public
TObject
35
{
36
public
:
37
Ex03DetectorConstruction
();
38
virtual
~Ex03DetectorConstruction
();
39
40
public
:
41
void
ConstructMaterials
();
42
void
ConstructGeometry
();
43
void
SetCuts
();
44
void
SetControls
();
45
void
PrintCalorParameters
();
46
// void UpdateGeometry();
47
48
// set methods
49
void
SetNbOfLayers
(Int_t value);
50
void
SetDefaultMaterial
(
const
TString& materialName);
51
void
SetAbsorberMaterial
(
const
TString& materialName);
52
void
SetGapMaterial
(
const
TString& materialName);
53
void
SetCalorSizeYZ
(Double_t value);
54
void
SetAbsorberThickness
(Double_t value);
55
void
SetGapThickness
(Double_t value);
56
57
//
58
// get methods
59
60
/// \return The number of calorimeter layers
61
Int_t
GetNbOfLayers
()
const
{
return
fNbOfLayers
; }
62
63
/// \return The world size x component
64
Double_t
GetWorldSizeX
()
const
{
return
fWorldSizeX
; }
65
66
/// \return The world size y,z component
67
Double_t
GetWorldSizeYZ
()
const
{
return
fWorldSizeYZ
; }
68
69
/// \return The calorimeter size y,z component
70
Double_t
GetCalorSizeYZ
()
const
{
return
fCalorSizeYZ
; }
71
72
/// \return The calorimeter thickness
73
Double_t
GetCalorThickness
()
const
{
return
fCalorThickness
; }
74
75
/// \return The absorber thickness
76
Double_t
GetAbsorberThickness
()
const
{
return
fAbsorberThickness
; }
77
78
/// \return The gap thickness
79
Double_t
GetGapThickness
()
const
{
return
fGapThickness
; }
80
81
private
:
82
// helper type for setting cuts
83
struct
MaterialCuts
84
{
85
MaterialCuts
(
86
TString name, Double_t p1, Double_t p2, Double_t p3, Double_t p4)
87
:
fName
(name),
fCUTGAM
(p1),
fBCUTE
(p2),
fCUTELE
(p3),
fDCUTE
(p4)
88
{}
89
TString
fName
;
90
Double_t
fCUTGAM
;
91
Double_t
fBCUTE
;
92
Double_t
fCUTELE
;
93
Double_t
fDCUTE
;
94
};
95
96
// methods
97
void
ComputeCalorParameters
();
98
99
// data members
100
Int_t
fNbOfLayers
;
///< The number of calorimeter layers
101
Double_t
fWorldSizeX
;
///< The world size x component
102
Double_t
fWorldSizeYZ
;
///< The world size y,z component
103
Double_t
fCalorSizeYZ
;
///< The calorimeter size y,z component
104
Double_t
fCalorThickness
;
///< The calorimeter thickness
105
Double_t
fLayerThickness
;
///< The calorimeter layer thickness
106
Double_t
fAbsorberThickness
;
///< The absorber thickness
107
Double_t
fGapThickness
;
///< The gap thickness
108
109
TString
fDefaultMaterial
;
///< The default material name
110
TString
fAbsorberMaterial
;
///< The absorber material name
111
TString
fGapMaterial
;
///< The gap material name
112
113
ClassDef(
Ex03DetectorConstruction
, 1)
// Ex03DetectorConstruction
114
};
115
116
#endif
// EX03_DETECTOR_CONSTRUCTION_H
Ex03DetectorConstruction::~Ex03DetectorConstruction
virtual ~Ex03DetectorConstruction()
Definition
Ex03DetectorConstruction.cxx:71
Ex03DetectorConstruction::fWorldSizeYZ
Double_t fWorldSizeYZ
The world size y,z component.
Definition
Ex03DetectorConstruction.h:102
Ex03DetectorConstruction::fNbOfLayers
Int_t fNbOfLayers
The number of calorimeter layers.
Definition
Ex03DetectorConstruction.h:100
Ex03DetectorConstruction::Ex03DetectorConstruction
Ex03DetectorConstruction()
Definition
Ex03DetectorConstruction.cxx:45
Ex03DetectorConstruction::GetNbOfLayers
Int_t GetNbOfLayers() const
Definition
Ex03DetectorConstruction.h:61
Ex03DetectorConstruction::GetCalorSizeYZ
Double_t GetCalorSizeYZ() const
Definition
Ex03DetectorConstruction.h:70
Ex03DetectorConstruction::SetNbOfLayers
void SetNbOfLayers(Int_t value)
Definition
Ex03DetectorConstruction.cxx:456
Ex03DetectorConstruction::fGapThickness
Double_t fGapThickness
The gap thickness.
Definition
Ex03DetectorConstruction.h:107
Ex03DetectorConstruction::fDefaultMaterial
TString fDefaultMaterial
The default material name.
Definition
Ex03DetectorConstruction.h:109
Ex03DetectorConstruction::SetGapThickness
void SetGapThickness(Double_t value)
Definition
Ex03DetectorConstruction.cxx:510
Ex03DetectorConstruction::ConstructGeometry
void ConstructGeometry()
Definition
Ex03DetectorConstruction.cxx:252
Ex03DetectorConstruction::GetWorldSizeYZ
Double_t GetWorldSizeYZ() const
Definition
Ex03DetectorConstruction.h:67
Ex03DetectorConstruction::GetAbsorberThickness
Double_t GetAbsorberThickness() const
Definition
Ex03DetectorConstruction.h:76
Ex03DetectorConstruction::PrintCalorParameters
void PrintCalorParameters()
Definition
Ex03DetectorConstruction.cxx:444
Ex03DetectorConstruction::SetAbsorberThickness
void SetAbsorberThickness(Double_t value)
Definition
Ex03DetectorConstruction.cxx:501
Ex03DetectorConstruction::GetGapThickness
Double_t GetGapThickness() const
Definition
Ex03DetectorConstruction.h:79
Ex03DetectorConstruction::fAbsorberMaterial
TString fAbsorberMaterial
The absorber material name.
Definition
Ex03DetectorConstruction.h:110
Ex03DetectorConstruction::fLayerThickness
Double_t fLayerThickness
The calorimeter layer thickness.
Definition
Ex03DetectorConstruction.h:105
Ex03DetectorConstruction::fGapMaterial
TString fGapMaterial
The gap material name.
Definition
Ex03DetectorConstruction.h:111
Ex03DetectorConstruction::GetCalorThickness
Double_t GetCalorThickness() const
Definition
Ex03DetectorConstruction.h:73
Ex03DetectorConstruction::fAbsorberThickness
Double_t fAbsorberThickness
The absorber thickness.
Definition
Ex03DetectorConstruction.h:106
Ex03DetectorConstruction::SetAbsorberMaterial
void SetAbsorberMaterial(const TString &materialName)
Definition
Ex03DetectorConstruction.cxx:474
Ex03DetectorConstruction::SetDefaultMaterial
void SetDefaultMaterial(const TString &materialName)
Definition
Ex03DetectorConstruction.cxx:465
Ex03DetectorConstruction::SetControls
void SetControls()
Definition
Ex03DetectorConstruction.cxx:427
Ex03DetectorConstruction::SetCuts
void SetCuts()
Definition
Ex03DetectorConstruction.cxx:374
Ex03DetectorConstruction::fCalorThickness
Double_t fCalorThickness
The calorimeter thickness.
Definition
Ex03DetectorConstruction.h:104
Ex03DetectorConstruction::ConstructMaterials
void ConstructMaterials()
Definition
Ex03DetectorConstruction.cxx:97
Ex03DetectorConstruction::GetWorldSizeX
Double_t GetWorldSizeX() const
Definition
Ex03DetectorConstruction.h:64
Ex03DetectorConstruction::ComputeCalorParameters
void ComputeCalorParameters()
Definition
Ex03DetectorConstruction.cxx:81
Ex03DetectorConstruction::SetCalorSizeYZ
void SetCalorSizeYZ(Double_t value)
Definition
Ex03DetectorConstruction.cxx:492
Ex03DetectorConstruction::fWorldSizeX
Double_t fWorldSizeX
The world size x component.
Definition
Ex03DetectorConstruction.h:101
Ex03DetectorConstruction::SetGapMaterial
void SetGapMaterial(const TString &materialName)
Definition
Ex03DetectorConstruction.cxx:483
Ex03DetectorConstruction::fCalorSizeYZ
Double_t fCalorSizeYZ
The calorimeter size y,z component.
Definition
Ex03DetectorConstruction.h:103
TObject
Ex03DetectorConstruction::MaterialCuts::fName
TString fName
Definition
Ex03DetectorConstruction.h:89
Ex03DetectorConstruction::MaterialCuts::fCUTELE
Double_t fCUTELE
Definition
Ex03DetectorConstruction.h:92
Ex03DetectorConstruction::MaterialCuts::fDCUTE
Double_t fDCUTE
Definition
Ex03DetectorConstruction.h:93
Ex03DetectorConstruction::MaterialCuts::fCUTGAM
Double_t fCUTGAM
Definition
Ex03DetectorConstruction.h:90
Ex03DetectorConstruction::MaterialCuts::MaterialCuts
MaterialCuts(TString name, Double_t p1, Double_t p2, Double_t p3, Double_t p4)
Definition
Ex03DetectorConstruction.h:85
Ex03DetectorConstruction::MaterialCuts::fBCUTE
Double_t fBCUTE
Definition
Ex03DetectorConstruction.h:91
Generated on
for VMC Examples by
1.17.0