Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
processes
hadronic
cross_sections
src
G4IonProtonCrossSection.cc
이 파일의 문서화 페이지로 가기
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
// $Id: G4IonProtonCrossSection.cc 90447 2015-05-29 07:41:53Z gcosmo $
27
//
28
// -------------------------------------------------------------------
29
//
30
// GEANT4 Class file
31
//
32
//
33
// File name: G4IonProtonCrossSection
34
//
35
// Author Ivantchenko, Geant4, 30 July 2010
36
//
37
// Modifications:
38
//
39
40
#include "
G4IonProtonCrossSection.hh
"
41
#include "
G4SystemOfUnits.hh
"
42
#include "
G4ProtonInelasticCrossSection.hh
"
43
#include "
G4DynamicParticle.hh
"
44
#include "
G4Element.hh
"
45
#include "
G4HadTmpUtil.hh
"
46
47
using namespace
std;
48
49
G4IonProtonCrossSection::G4IonProtonCrossSection
()
50
:
G4VCrossSectionDataSet
(
"AxenWellischIonH"
)
51
{
52
theForward
=
new
G4ProtonInelasticCrossSection
();
53
}
54
55
G4IonProtonCrossSection::~G4IonProtonCrossSection
()
56
{}
57
58
G4bool
59
G4IonProtonCrossSection::IsElementApplicable
(
const
G4DynamicParticle
* dp,
60
G4int
Z
,
const
G4Material
*)
61
{
62
return
((1 == Z) && (dp->
GetDefinition
()->
GetPDGCharge
()/
eplus
> 1.5));
63
}
64
65
66
G4double
67
G4IonProtonCrossSection::GetElementCrossSection
(
68
const
G4DynamicParticle
* dp,
69
G4int
,
const
G4Material
*)
70
{
71
const
G4ParticleDefinition
*
p
= dp->
GetDefinition
();
72
G4double
e
= dp->
GetKineticEnergy
()*
CLHEP::proton_mass_c2
/p->
GetPDGMass
();
73
return
74
theForward
->
GetProtonCrossSection
(e,
G4lrint
(p->
GetPDGCharge
()/
eplus
));
75
}
76
77
void
78
G4IonProtonCrossSection::CrossSectionDescription
(std::ostream& outFile)
const
79
{
80
outFile <<
"G4IonProtonCrossSection calculates the inelastic cross section\n"
81
<<
"for any ion projectile with Z >=2 only on hydrogen target.\n"
82
<<
"It uses the inverse kinematics and the Axen-Wellisch\n"
83
<<
"inelastic cross section (G4ProtonInelasticCrossSection).\n"
;
84
}
85
G4IonProtonCrossSection::GetElementCrossSection
virtual G4double GetElementCrossSection(const G4DynamicParticle *aPart, G4int Z, const G4Material *)
Definition:
G4IonProtonCrossSection.cc:67
G4ProtonInelasticCrossSection::GetProtonCrossSection
G4double GetProtonCrossSection(G4double kineticEnergy, G4int Z)
Definition:
G4ProtonInelasticCrossSection.cc:66
G4IonProtonCrossSection::theForward
G4ProtonInelasticCrossSection * theForward
Definition:
G4IonProtonCrossSection.hh:83
G4ProtonInelasticCrossSection.hh
p
const char * p
Definition:
xmltok.h:285
G4Material
Definition:
G4Material.hh:121
G4ParticleDefinition::GetPDGCharge
G4double GetPDGCharge() const
Definition:
G4ParticleDefinition.hh:125
G4IonProtonCrossSection.hh
G4DynamicParticle
Definition:
G4DynamicParticle.hh:73
G4IonProtonCrossSection::IsElementApplicable
virtual G4bool IsElementApplicable(const G4DynamicParticle *aPart, G4int Z, const G4Material *)
Definition:
G4IonProtonCrossSection.cc:59
G4ParticleDefinition::GetPDGMass
G4double GetPDGMass() const
Definition:
G4ParticleDefinition.hh:123
CLHEP::proton_mass_c2
static constexpr double proton_mass_c2
Definition:
PhysicalConstants.h:80
Z
Float_t Z
Definition:
advanced/microbeam/plot.C:38
G4double
double G4double
Definition:
G4Types.hh:76
G4bool
bool G4bool
Definition:
G4Types.hh:79
G4DynamicParticle.hh
G4DynamicParticle::GetDefinition
G4ParticleDefinition * GetDefinition() const
G4SystemOfUnits.hh
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:73
G4ProtonInelasticCrossSection
Definition:
G4ProtonInelasticCrossSection.hh:52
G4IonProtonCrossSection::~G4IonProtonCrossSection
virtual ~G4IonProtonCrossSection()
Definition:
G4IonProtonCrossSection.cc:55
G4IonProtonCrossSection::CrossSectionDescription
virtual void CrossSectionDescription(std::ostream &) const
Definition:
G4IonProtonCrossSection.cc:78
G4HadTmpUtil.hh
eplus
static constexpr double eplus
Definition:
G4SIunits.hh:199
G4lrint
int G4lrint(double ad)
Definition:
templates.hh:151
G4int
int G4int
Definition:
G4Types.hh:78
G4IonProtonCrossSection::G4IonProtonCrossSection
G4IonProtonCrossSection()
Definition:
G4IonProtonCrossSection.cc:49
G4DynamicParticle::GetKineticEnergy
G4double GetKineticEnergy() const
G4Element.hh
e
Float_t e
Definition:
extended/medical/dna/range/plot.C:35
G4VCrossSectionDataSet
Definition:
G4VCrossSectionDataSet.hh:71
다음에 의해 생성됨 :
1.8.5