Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
processes
hadronic
models
cascade
cascade
src
G4InteractionCase.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: G4InteractionCase.cc 66241 2012-12-13 18:34:42Z gunter $
27
//
28
// 20100518 M. Kelsey -- Move code from Colliders' "bulletTargetSetter()"
29
// to setBulletTarget().
30
31
#include "
G4InteractionCase.hh
"
32
#include "
G4InuclParticle.hh
"
33
#include "
G4InuclElementaryParticle.hh
"
34
#include "
G4InuclNuclei.hh
"
35
36
37
// Evaluate concrete types of input particles and assign bullet, target
38
39
void
G4InteractionCase::set
(
G4InuclParticle
* part1,
40
G4InuclParticle
* part2) {
41
clear
();
// Reset everything in case of failure
42
43
// See which one of the two (or both) is a nucleus
44
G4InuclNuclei
* nucl1 =
dynamic_cast<
G4InuclNuclei
*
>
(part1);
45
G4InuclNuclei
* nucl2 =
dynamic_cast<
G4InuclNuclei
*
>
(part2);
46
47
G4InuclElementaryParticle
* had1 =
dynamic_cast<
G4InuclElementaryParticle
*
>
(part1);
48
G4InuclElementaryParticle
* had2 =
dynamic_cast<
G4InuclElementaryParticle
*
>
(part2);
49
50
if
(nucl1 && nucl2) {
// Nuclear collision, lighter is projectile
51
inter_case
= -2;
52
if
(nucl2->
getA
() >= nucl1->
getA
()) {
53
bullet
= part1;
54
target
= part2;
55
}
else
{
56
bullet
= part2;
57
target
= part1;
58
}
59
}
else
if
(nucl1 || nucl2) {
// Hadron on nucleus, hadron projectile
60
inter_case
= -1;
61
if
(nucl1 && had2) {
62
bullet
= part2;
63
target
= part1;
64
}
else
{
65
bullet
= part1;
66
target
= part2;
67
}
68
}
else
if
(had1 && had2) {
// Hadron-hadron interaction, order irrelevant
69
inter_case
= had1->
type
() * had2->
type
();
70
bullet
= part1;
71
target
= part2;
72
}
73
}
G4InteractionCase::clear
void clear()
Definition:
G4InteractionCase.hh:50
target
const XML_Char * target
Definition:
expat.h:268
G4InuclNuclei::getA
G4int getA() const
Definition:
G4InuclNuclei.hh:137
G4InteractionCase.hh
G4InteractionCase::inter_case
G4int inter_case
Definition:
G4InteractionCase.hh:71
G4InuclElementaryParticle
Definition:
G4InuclElementaryParticle.hh:59
G4InteractionCase::set
void set(G4InuclParticle *part1, G4InuclParticle *part2)
Definition:
G4InteractionCase.cc:39
G4InteractionCase::bullet
G4InuclParticle * bullet
Definition:
G4InteractionCase.hh:68
G4InuclNuclei.hh
G4InuclParticle.hh
G4InuclElementaryParticle.hh
G4InuclNuclei
Definition:
G4InuclNuclei.hh:68
G4InuclParticle
Definition:
G4InuclParticle.hh:53
G4InuclElementaryParticle::type
G4int type() const
Definition:
G4InuclElementaryParticle.hh:104
다음에 의해 생성됨 :
1.8.5