Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
processes
electromagnetic
adjoint
src
G4AdjointhMultipleScattering.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: G4AdjointhMultipleScattering.cc 90259 2015-05-22 08:57:37Z gcosmo $
27
//
28
29
//
30
// GEANT4 Class file
31
//
32
// File name: G4AdjointhMultipleScattering
33
//
34
// Author: Desorgher Laurent
35
//
36
// Creation date: 03.06.2009 cloned from G4hMultipleScattering by U.Laszlo with slight modification for adjoint_ion.
37
//
38
// -----------------------------------------------------------------------------
39
//
40
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42
43
#include "
G4AdjointhMultipleScattering.hh
"
44
#include "
G4SystemOfUnits.hh
"
45
#include "
G4UrbanMscModel.hh
"
46
#include "
G4MscStepLimitType.hh
"
47
48
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49
50
using namespace
std;
51
52
G4AdjointhMultipleScattering::G4AdjointhMultipleScattering
(
const
G4String
& processName)
53
:
G4VMultipleScattering
(processName)
54
{
55
isInitialized
=
false
;
56
}
57
58
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
59
60
G4AdjointhMultipleScattering::~G4AdjointhMultipleScattering
()
61
{}
62
63
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64
65
G4bool
G4AdjointhMultipleScattering::IsApplicable
(
const
G4ParticleDefinition
&
p
)
66
{
67
return
(p.
GetPDGCharge
() != 0.0 && !p.
IsShortLived
());
68
}
69
70
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71
72
void
G4AdjointhMultipleScattering::InitialiseProcess
(
const
G4ParticleDefinition
*)
73
{
74
if
(
isInitialized
) {
return
; }
75
AddEmModel
(1,
new
G4UrbanMscModel
());
76
isInitialized
=
true
;
77
}
78
79
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
80
81
void
G4AdjointhMultipleScattering::PrintInfo
()
82
{
83
G4cout
<<
" RangeFactor= "
<<
RangeFactor
()
84
<<
", step limit type: "
<<
StepLimitType
()
85
<<
", lateralDisplacement: "
<<
LateralDisplasmentFlag
()
86
<<
", skin= "
<<
Skin
()
87
<<
G4endl
;
88
}
89
90
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
91
92
/*G4double G4AdjointhMultipleScattering::AlongStepGetPhysicalInteractionLength(
93
const G4Track& track,
94
double,
95
G4double currentMinimalStep,
96
G4double& currentSafety,
97
G4GPILSelection* selection)
98
{
99
// get Step limit proposed by the process
100
valueGPILSelectionMSC = NotCandidateForSelection;
101
102
G4double escaled = track.GetKineticEnergy();
103
if(isIon) escaled *= track.GetDynamicParticle()->GetMass()/proton_mass_c2;
104
105
G4double steplength = GetMscContinuousStepLimit(track,
106
escaled,
107
currentMinimalStep,
108
currentSafety);
109
// G4cout << "StepLimit= " << steplength << G4endl;
110
// set return value for G4GPILSelection
111
*selection = valueGPILSelectionMSC;
112
return steplength;
113
}
114
*/
115
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4VMultipleScattering
Definition:
G4VMultipleScattering.hh:92
G4VMultipleScattering::StepLimitType
G4MscStepLimitType StepLimitType() const
Definition:
G4VMultipleScattering.hh:378
G4endl
#define G4endl
Definition:
G4ios.hh:61
G4AdjointhMultipleScattering::IsApplicable
G4bool IsApplicable(const G4ParticleDefinition &p)
Definition:
G4AdjointhMultipleScattering.cc:65
p
const char * p
Definition:
xmltok.h:285
G4UrbanMscModel.hh
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
G4ParticleDefinition::GetPDGCharge
G4double GetPDGCharge() const
Definition:
G4ParticleDefinition.hh:125
G4AdjointhMultipleScattering::isInitialized
G4bool isInitialized
Definition:
G4AdjointhMultipleScattering.hh:95
G4AdjointhMultipleScattering::PrintInfo
void PrintInfo()
Definition:
G4AdjointhMultipleScattering.cc:81
G4VMultipleScattering::RangeFactor
G4double RangeFactor() const
Definition:
G4VMultipleScattering.hh:347
G4VMultipleScattering::LateralDisplasmentFlag
G4bool LateralDisplasmentFlag() const
Definition:
G4VMultipleScattering.hh:319
G4bool
bool G4bool
Definition:
G4Types.hh:79
G4UrbanMscModel
Definition:
G4UrbanMscModel.hh:72
G4AdjointhMultipleScattering::InitialiseProcess
void InitialiseProcess(const G4ParticleDefinition *)
Definition:
G4AdjointhMultipleScattering.cc:72
G4SystemOfUnits.hh
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:73
G4MscStepLimitType.hh
G4AdjointhMultipleScattering.hh
G4cout
G4GLOB_DLL std::ostream G4cout
G4VMultipleScattering::AddEmModel
void AddEmModel(G4int order, G4VEmModel *, const G4Region *region=nullptr)
Definition:
G4VMultipleScattering.cc:144
G4ParticleDefinition::IsShortLived
G4bool IsShortLived() const
Definition:
G4ParticleDefinition.hh:158
G4AdjointhMultipleScattering::~G4AdjointhMultipleScattering
virtual ~G4AdjointhMultipleScattering()
Definition:
G4AdjointhMultipleScattering.cc:60
G4VMultipleScattering::Skin
G4double Skin() const
Definition:
G4VMultipleScattering.hh:333
G4AdjointhMultipleScattering::G4AdjointhMultipleScattering
G4AdjointhMultipleScattering(const G4String &processName="msc")
Definition:
G4AdjointhMultipleScattering.cc:52
다음에 의해 생성됨 :
1.8.5