Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
extended
hadronic
Hadr07
src
StepMaxProcess.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
//
28
//
29
// $Id: StepMaxProcess.cc 67268 2013-02-13 11:38:40Z ihrivnac $
30
//
31
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
34
#include "
StepMaxProcess.hh
"
35
#include "StepMaxMessenger.hh"
36
#include "HistoManager.hh"
37
38
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
40
StepMaxProcess::StepMaxProcess
(
const
G4String
& processName,
G4ProcessType
type)
41
:
G4VDiscreteProcess
(processName,type),fMess(0)
42
{
43
fMaxStep1
=
fMaxStep2
=
DBL_MAX
;
44
fApplyMaxStep2
=
true
;
45
fMess
=
new
StepMaxMessenger
(
this
);
46
}
47
48
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49
50
StepMaxProcess::~StepMaxProcess
() {
delete
fMess
; }
51
52
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53
54
G4bool
StepMaxProcess::IsApplicable
(
const
G4ParticleDefinition
& particle)
55
{
56
return
(particle.
GetPDGCharge
() != 0. && !particle.
IsShortLived
());
57
}
58
59
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
60
61
void
StepMaxProcess::SetMaxStep1
(
G4double
step) {
fMaxStep1
= step;}
62
63
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64
65
void
StepMaxProcess::ApplyMaxStep2
(
G4bool
value
) {
fApplyMaxStep2
=
value
;}
66
67
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69
G4double
StepMaxProcess::PostStepGetPhysicalInteractionLength
(
const
G4Track
&,
70
G4double
,
71
G4ForceCondition
*
condition
)
72
{
73
// condition is set to "Not Forced"
74
*condition =
NotForced
;
75
76
if
(
fApplyMaxStep2
) {
77
G4AnalysisManager
* analysisManager = G4AnalysisManager::Instance();
78
G4int
ih = 10;
79
if
(analysisManager->GetH1Activation(ih))
80
fMaxStep2
= analysisManager->GetH1Width(ih)*analysisManager->GetH1Unit(ih);
81
return
fMaxStep2
;
82
}
83
else
return
fMaxStep1
;
84
}
85
86
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87
88
G4VParticleChange
*
StepMaxProcess::PostStepDoIt
(
const
G4Track
& aTrack,
89
const
G4Step
&)
90
{
91
// do nothing
92
aParticleChange
.
Initialize
(aTrack);
93
return
&
aParticleChange
;
94
}
95
96
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
StepMaxProcess::ApplyMaxStep2
void ApplyMaxStep2(G4bool)
Definition:
StepMaxProcess.cc:65
StepMaxProcess::IsApplicable
virtual G4bool IsApplicable(const G4ParticleDefinition &)
Definition:
StepMaxProcess.cc:54
StepMaxProcess::SetMaxStep1
void SetMaxStep1(G4double)
Definition:
StepMaxProcess.cc:61
G4VDiscreteProcess
Definition:
G4VDiscreteProcess.hh:58
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
G4ParticleDefinition::GetPDGCharge
G4double GetPDGCharge() const
Definition:
G4ParticleDefinition.hh:125
G4VParticleChange
Definition:
G4VParticleChange.hh:94
condition
G4double condition(const G4ErrorSymMatrix &m)
StepMaxProcess::fMess
StepMaxMessenger * fMess
Definition:
StepMaxProcess.hh:74
G4VProcess::aParticleChange
G4ParticleChange aParticleChange
Definition:
G4VProcess.hh:289
StepMaxProcess::StepMaxProcess
StepMaxProcess(const G4String &processName="UserMaxStep", G4ProcessType type=fUserDefined)
Definition:
StepMaxProcess.cc:40
StepMaxProcess::fMaxStep2
G4double fMaxStep2
Definition:
StepMaxProcess.hh:71
G4double
double G4double
Definition:
G4Types.hh:76
G4bool
bool G4bool
Definition:
G4Types.hh:79
value
const XML_Char int const XML_Char * value
Definition:
expat.h:331
G4ParticleChange::Initialize
virtual void Initialize(const G4Track &)
Definition:
G4ParticleChange.cc:228
G4Track
Definition:
G4Track.hh:76
G4ProcessType
G4ProcessType
Definition:
G4ProcessType.hh:43
NotForced
Definition:
G4ForceCondition.hh:56
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:73
G4Csv::G4AnalysisManager
G4CsvAnalysisManager G4AnalysisManager
Definition:
g4csv_defs.hh:77
G4Step
Definition:
G4Step.hh:76
StepMaxProcess::fApplyMaxStep2
G4bool fApplyMaxStep2
Definition:
StepMaxProcess.hh:72
StepMaxProcess::PostStepGetPhysicalInteractionLength
virtual G4double PostStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)
Definition:
StepMaxProcess.cc:69
G4int
int G4int
Definition:
G4Types.hh:78
G4ForceCondition
G4ForceCondition
Definition:
G4ForceCondition.hh:49
StepMaxProcess::fMaxStep1
G4double fMaxStep1
Definition:
StepMaxProcess.hh:66
StepMaxProcess::~StepMaxProcess
~StepMaxProcess()
Definition:
StepMaxProcess.cc:50
G4ParticleDefinition::IsShortLived
G4bool IsShortLived() const
Definition:
G4ParticleDefinition.hh:158
StepMaxProcess.hh
Definition of the StepMaxProcess class.
StepMaxMessenger
Definition:
electromagnetic/TestEm1/include/StepMaxMessenger.hh:45
DBL_MAX
#define DBL_MAX
Definition:
templates.hh:83
StepMaxProcess::PostStepDoIt
virtual G4VParticleChange * PostStepDoIt(const G4Track &, const G4Step &)
Definition:
StepMaxProcess.cc:88
다음에 의해 생성됨 :
1.8.5