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
examples
novice
N05
src
ExN05PiModel.cc
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$
28
//
29
#include "
ExN05PiModel.hh
"
30
31
#include "
G4PionMinus.hh
"
32
#include "
G4PionPlus.hh
"
33
#include "
G4Gamma.hh
"
34
35
ExN05PiModel::ExN05PiModel
(
G4Region
*anEnvelope) :
36
G4VFastSimulationModel
(
"ExN05PiModel"
,anEnvelope)
37
{;}
38
39
ExN05PiModel::~ExN05PiModel
()
40
{;}
41
42
G4bool
ExN05PiModel::IsApplicable
(
const
G4ParticleDefinition
& particleType)
43
{
44
return
45
&particleType ==
G4PionMinus::PionMinusDefinition
() ||
46
&particleType ==
G4PionPlus::PionPlusDefinition
();
47
}
48
49
G4bool
ExN05PiModel::ModelTrigger
(
const
G4FastTrack
& fastTrack) {
50
//-------------------------------------------------------------
51
// UserTrigger() method: method which has to decide if
52
// the parameterisation has to be applied.
53
// Here ModelTrigger() asks the user (ie you) a 0/1 answer.
54
//
55
// Note that quantities like the local/global position/direction etc..
56
// are available at this level via the fastTrack parameter (allowing
57
// to check distance from boundaries, see below to allow the decision)
58
//--------------------------------------------------------------
59
G4cout
<<
"\nExN05PiModel::ModelTrigger() called:"
<<
G4endl
;
60
G4cout
<<
"--------------------------------"
<<
G4endl
;
61
G4cout
<<
"(particle is a "
<< fastTrack.
GetPrimaryTrack
()->
62
GetDefinition()->GetParticleName() <<
" )\n"
<<
G4endl
;
63
64
// -- Examples of available informations:
65
66
// -- position:
67
G4cout
<<
" Track position: "
<<
68
fastTrack.
GetPrimaryTrack
()->
GetPosition
() <<
"(global coord.)"
<<
69
fastTrack.
GetPrimaryTrackLocalPosition
() <<
"(in envelope coord.)"
70
<<
G4endl
;
71
72
// -- direction:
73
G4cout
<<
" Track direction:"
<<
74
fastTrack.
GetPrimaryTrack
()->
GetMomentum
().
unit
() <<
75
"(global coord.)"
<<
76
fastTrack.
GetPrimaryTrackLocalDirection
() <<
"(in envelope coord.)"
<<
77
G4endl
;
78
79
return
true
;
80
}
81
82
void
ExN05PiModel::DoIt
(
const
G4FastTrack
& fastTrack,
83
G4FastStep
& fastStep)
84
//--------------------------------------------------
85
//
86
// User method to code the parameterisation properly
87
// said.
88
//
89
//--------------------------------------------------
90
{
91
92
//------------------------------------------------
93
// The primary track continues along its direction.
94
// One secondary (a photon) is added:
95
//------------------------------------------------
96
G4cout
<<
" Pion `model' applied\n"
<<
G4endl
;
97
98
//------------------------------
99
// Primary:
100
// idem as in "DefaultModel":
101
//
102
//------------------------------
103
G4ThreeVector
position
;
104
G4double
distance;
105
distance = fastTrack.
GetEnvelopeSolid
()->
106
DistanceToOut(fastTrack.
GetPrimaryTrackLocalPosition
(),
107
fastTrack.
GetPrimaryTrackLocalDirection
());
108
position = fastTrack.
GetPrimaryTrackLocalPosition
() +
109
distance*fastTrack.
GetPrimaryTrackLocalDirection
();
110
111
// -- set final position:
112
fastStep.
ProposePrimaryTrackFinalPosition
(position);
113
114
//---------------------------
115
// Secondary:
116
// Adds one "secondary":
117
//
118
//---------------------------
119
// -- First, user has to say how many secondaries will be created:
120
fastStep.
SetNumberOfSecondaryTracks
(1);
121
122
//------------------------
123
// -- Build the secondary:
124
//------------------------
125
// -- direction:
126
G4ParticleMomentum
direction(fastTrack.
GetPrimaryTrackLocalDirection
());
127
direction.
setZ
(direction.z()*0.5);
128
direction.setY(direction.y()+direction.z()*0.1);
129
direction = direction.unit();
// necessary ?
130
131
// -- dynamics (Note that many constructors exists for G4DynamicParticle
132
// -- see prototype/particle+matter/particles/management/include/G4DynamicParticle.hh)
133
G4DynamicParticle
dynamique(
G4Gamma::GammaDefinition
(),
134
direction,
135
fastTrack.
GetPrimaryTrack
()->
136
GetKineticEnergy()/2.);
137
// -- position:
138
G4double
Dist;
139
Dist = fastTrack.
GetEnvelopeSolid
()->
140
DistanceToOut(fastTrack.
GetPrimaryTrackLocalPosition
(),
141
direction);
142
G4ThreeVector
posi;
143
posi = fastTrack.
GetPrimaryTrackLocalPosition
() + Dist*direction;
144
145
//------------------------------------
146
//-- Creation of the secondary Track:
147
//------------------------------------
148
fastStep.
CreateSecondaryTrack
(dynamique, posi,
149
fastTrack.
GetPrimaryTrack
()->
GetGlobalTime
());
150
151
}
Generated on Sat May 25 2013 14:33:02 for Geant4 by
1.8.4