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
extended
hadronic
Hadr02
src
IonUrQMDPhysics.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
//
28
//
29
// $Id$
30
// GEANT4 tag $Name: $
31
//
32
//---------------------------------------------------------------------------
33
//
34
// Class: IonUrQMDPhysics
35
//
36
// Author: 2012 Andrea Dotti
37
//
38
//
39
// Modified:
40
//
41
// ------------------------------------------------------------
42
//
43
#ifdef G4_USE_URQMD
44
#include "
IonUrQMDPhysics.hh
"
45
#include "
G4ParticleDefinition.hh
"
46
#include "
G4ProcessManager.hh
"
47
#include "
G4Deuteron.hh
"
48
#include "
G4Triton.hh
"
49
#include "
G4He3.hh
"
50
#include "
G4Alpha.hh
"
51
#include "
G4GenericIon.hh
"
52
53
#include "
G4HadronInelasticProcess.hh
"
54
#include "
G4TripathiCrossSection.hh
"
55
#include "
G4TripathiLightCrossSection.hh
"
56
#include "
G4IonsShenCrossSection.hh
"
57
#include "
G4IonProtonCrossSection.hh
"
58
59
#include "
G4UrQMD1_3Model.hh
"
60
61
#include "
G4BuilderType.hh
"
62
using namespace
std;
63
64
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
65
66
IonUrQMDPhysics::IonUrQMDPhysics
(
G4int
ver)
67
:
G4VHadronPhysics
(
"ionInelasticUrQMD"
),verbose(ver),
68
fWasActivated(false)
69
{
70
fTripathi = fTripathiLight = fShen = fIonH = 0;
71
fModel = 0;
72
SetPhysicsType
(
bIons
);
73
if
(fVerbose > 1) {
G4cout
<<
"### IonUrQMDPhysics"
<<
G4endl
; }
74
}
75
76
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
77
78
IonUrQMDPhysics::~IonUrQMDPhysics
()
79
{}
80
81
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
void
IonUrQMDPhysics::ConstructProcess
()
83
{
84
if
(fWasActivated) {
return
; }
85
fWasActivated =
true
;
86
87
G4double
emin = 0.*
MeV
;
88
G4double
emax = 100.*
TeV
;
89
90
fModel =
new
G4UrQMD1_3Model
();
91
fModel->
SetMinEnergy
( emin );
92
fModel->
SetMaxEnergy
( emax );
93
94
fShen =
new
G4IonsShenCrossSection
();
95
fTripathi =
new
G4TripathiCrossSection
();
96
fTripathiLight =
new
G4TripathiLightCrossSection
();
97
fIonH =
new
G4IonProtonCrossSection
();
98
fShen->
SetMaxKinEnergy
( emax );
99
fTripathi->
SetMaxKinEnergy
( emax );
100
fTripathiLight->
SetMaxKinEnergy
( emax );
101
fIonH->
SetMaxKinEnergy
( emax );
102
103
104
AddProcess(
"dInelastic"
,
G4Deuteron::Deuteron
(),
false
);
105
AddProcess(
"tInelastic"
,
G4Triton::Triton
(),
false
);
106
AddProcess(
"He3Inelastic"
,
G4He3::He3
(),
true
);
107
AddProcess(
"alphaInelastic"
,
G4Alpha::Alpha
(),
true
);
108
AddProcess(
"ionInelastic"
,
G4GenericIon::GenericIon
(),
true
);
109
110
if
(fVerbose > 1) {
111
G4cout
<<
"IonUrQMDPhysics::ConstructProcess done! "
112
<<
G4endl
;
113
}
114
}
115
116
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
117
118
void
IonUrQMDPhysics::AddProcess(
const
G4String
&
name
,
119
G4ParticleDefinition
*
part
,
120
G4bool
isIon)
121
{
122
G4HadronInelasticProcess
* hadi =
new
G4HadronInelasticProcess
(name, part);
123
G4ProcessManager
* pManager = part->
GetProcessManager
();
124
pManager->
AddDiscreteProcess
(hadi);
125
hadi->
AddDataSet
(fShen);
126
// hadi->AddDataSet(fTripathi);
127
// hadi->AddDataSet(fTripathiLight);
128
if
(isIon) { hadi->
AddDataSet
(fIonH); }
129
hadi->
RegisterMe
( fModel );
130
}
131
132
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
133
#endif //URQMD
Generated on Sat May 25 2013 14:32:57 for Geant4 by
1.8.4