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
advanced
gammaray_telescope
src
GammaRayTelMuonPhysics.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
30
#include "
GammaRayTelMuonPhysics.hh
"
31
32
#include "
globals.hh
"
33
#include "
G4ios.hh
"
34
#include "
G4MuonPlus.hh
"
35
#include "
G4TauPlus.hh
"
36
#include "
G4TauMinus.hh
"
37
#include <iomanip>
38
39
40
#include "
G4ParticleTypes.hh
"
41
42
43
GammaRayTelMuonPhysics::GammaRayTelMuonPhysics
(
const
G4String
&
name
)
44
:
G4VPhysicsConstructor
(name)
45
{
46
}
47
48
GammaRayTelMuonPhysics::~GammaRayTelMuonPhysics
()
49
{
50
}
51
52
void
GammaRayTelMuonPhysics::ConstructParticle
()
53
{
54
55
}
56
57
58
#include "
G4ProcessManager.hh
"
59
60
void
GammaRayTelMuonPhysics::ConstructProcess
()
61
{
62
G4ProcessManager
* pManager = 0;
63
64
// Muon Plus Physics
65
pManager =
G4MuonPlus::MuonPlus
()->
GetProcessManager
();
66
// add processes
67
pManager->
AddProcess
(&
fMuPlusIonisation
,
ordInActive
,2, 2);
68
69
pManager->
AddDiscreteProcess
(&
fMuPlusBremsstrahlung
);
70
71
pManager->
AddDiscreteProcess
(&
fMuPlusPairProduction
);
72
73
pManager->
AddProcess
(&
fMuPlusMultipleScattering
);
74
pManager->
SetProcessOrdering
(&
fMuPlusMultipleScattering
,
idxAlongStep
, 1);
75
pManager->
SetProcessOrdering
(&
fMuPlusMultipleScattering
,
idxPostStep
, 1);
76
77
// Muon Minus Physics
78
pManager =
G4MuonMinus::MuonMinus
()->
GetProcessManager
();
79
// add processes
80
pManager->
AddProcess
(&
fMuMinusIonisation
,
ordInActive
,2, 2);
81
82
pManager->
AddDiscreteProcess
(&
fMuMinusBremsstrahlung
);
83
84
pManager->
AddDiscreteProcess
(&
fMuMinusPairProduction
);
85
86
pManager->
AddProcess
(&
fMuMinusMultipleScattering
);
87
pManager->
SetProcessOrdering
(&
fMuMinusMultipleScattering
,
idxAlongStep
, 1);
88
pManager->
SetProcessOrdering
(&
fMuMinusMultipleScattering
,
idxPostStep
, 1);
89
pManager->
AddRestProcess
(&
fMuMinusCaptureAtRest
);
90
91
// Tau Plus Physics
92
pManager =
G4TauPlus::TauPlus
()->
GetProcessManager
();
93
// add processes
94
pManager->
AddProcess
(&
fTauPlusIonisation
,
ordInActive
,2, 2);
95
96
pManager->
AddProcess
(&
fTauPlusMultipleScattering
);
97
pManager->
SetProcessOrdering
(&
fTauPlusMultipleScattering
,
idxAlongStep
, 1);
98
pManager->
SetProcessOrdering
(&
fTauPlusMultipleScattering
,
idxPostStep
, 1);
99
100
// Tau Minus Physics
101
pManager =
G4TauMinus::TauMinus
()->
GetProcessManager
();
102
// add processes
103
pManager->
AddProcess
(&
fTauMinusIonisation
,
ordInActive
,2, 2);
104
105
pManager->
AddProcess
(&
fTauMinusMultipleScattering
);
106
pManager->
SetProcessOrdering
(&
fTauMinusMultipleScattering
,
idxAlongStep
, 1);
107
pManager->
SetProcessOrdering
(&
fTauMinusMultipleScattering
,
idxPostStep
, 1);
108
109
}
110
111
112
Generated on Sat May 25 2013 14:32:10 for Geant4 by
1.8.4