Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
source
parameterisations
gflash
include
GFlashShowerModel.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
//
26
//
27
// $Id: GFlashShowerModel.hh 69796 2013-05-15 13:26:12Z gcosmo $
28
//
29
//
30
//---------------------------------------------------------------
31
// GEANT 4 class header file
32
//
33
// GFlashShowerModel
34
//
35
// Class description:
36
//
37
// GFlash parameterisation shower model.
38
39
// Authors: E.Barberio & Joanna Weng - 9.11.04
40
//---------------------------------------------------------------
41
#ifndef GFlashShowerModel_h
42
#define GFlashShowerModel_h 1
43
44
//G4 Standard
45
#include "
G4VFastSimulationModel.hh
"
46
#include "
G4VPhysicalVolume.hh
"
47
#include "
G4ios.hh
"
48
49
//GFlash
50
#include "
GFlashShowerModelMessenger.hh
"
51
#include "
GFlashParticleBounds.hh
"
52
#include "
GFlashEnergySpot.hh
"
53
#include "
GFlashHitMaker.hh
"
54
#include <vector>
55
56
class
GVFlashShowerParameterisation
;
57
class
GFlashHomoShowerParameterisation
;
58
class
GFlashSamplingShowerParameterisation
;
59
60
class
GFlashShowerModel
:
public
G4VFastSimulationModel
61
{
62
public
:
// with description
63
64
GFlashShowerModel
(
G4String
,
G4Envelope
*);
65
GFlashShowerModel
(
G4String
);
66
~GFlashShowerModel
();
67
// Constructors, destructor
68
69
G4bool
ModelTrigger
(
const
G4FastTrack
&);
70
G4bool
IsApplicable
(
const
G4ParticleDefinition
&);
71
void
DoIt
(
const
G4FastTrack
&,
G4FastStep
&);
72
// Checks whether conditions of fast parameterisation are fullfilled
73
74
// setting
75
76
inline
void
SetFlagParamType
(
G4int
I)
77
{ FlagParamType = I; }
78
inline
void
SetFlagParticleContainment
(
G4int
I)
79
{ FlagParticleContainment = I; }
80
inline
void
SetStepInX0
(
G4double
Lenght)
81
{ StepInX0=Lenght; }
82
inline
void
SetParameterisation
(
GVFlashShowerParameterisation
&DP)
83
{
Parameterisation
=&DP;}
84
inline
void
SetHitMaker
(
GFlashHitMaker
&Maker)
85
{ HMaker=&Maker; }
86
inline
void
SetParticleBounds
(
GFlashParticleBounds
&SpecificBound)
87
{
PBound
=&SpecificBound; }
88
89
// getting
90
91
inline
G4int
GetFlagParamType
()
92
{
return
FlagParamType; }
93
inline
G4int
GetFlagParticleContainment
()
94
{
return
FlagParticleContainment; }
95
inline
G4double
GetStepInX0
()
96
{
return
StepInX0; }
97
98
public
:
// without description
99
100
// Gets ?
101
GFlashParticleBounds
*
PBound
;
102
GVFlashShowerParameterisation
*
Parameterisation
;
103
104
private
:
105
106
void
ElectronDoIt(
const
G4FastTrack
&,
G4FastStep
&);
107
// void GammaDoIt(const G4FastTrack&, G4FastStep&);
108
// void NeutrinoDoIt(const G4FastTrack&, G4FastStep&);
109
G4bool
CheckParticleDefAndContainment(
const
G4FastTrack
&fastTrack);
110
G4bool
CheckContainment(
const
G4FastTrack
&fastTrack);
111
112
private
:
113
114
GFlashHitMaker
*HMaker;
115
GFlashShowerModelMessenger
* Messenger;
116
117
//Control Flags
118
G4int
FlagParamType;
119
G4int
FlagParticleContainment;
120
G4double
StepInX0;
121
G4double
EnergyStop;
122
123
};
124
#endif
Generated on Sat May 25 2013 14:33:21 for Geant4 by
1.8.4