Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4VSplitableHadron.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 //
27 // $Id: G4VSplitableHadron.cc 107318 2017-11-08 16:27:32Z gcosmo $
28 //
29 
30 // ------------------------------------------------------------
31 // GEANT 4 class implementation file
32 //
33 // ---------------- G4VSplitableHadron----------------
34 // by Gunter Folger, June 1998.
35 // class storing an interacting particle. Used by Parton String Models.
36 // ------------------------------------------------------------
37 
38 #include "G4VSplitableHadron.hh"
39 #include "G4Nucleon.hh"
40 #include "G4VKineticNucleon.hh"
41 
43 : theDefinition(NULL), TimeOfCreation(0.), theCollisionCount(0), curStatus(0), isSplit(false)
44 {
45 }
46 
48 : TimeOfCreation(0.), theCollisionCount(0), curStatus(0), isSplit(false)
49 {
50  theDefinition=aPrimary.GetDefinition();
51  the4Momentum.setVect(aPrimary.GetMomentum());
52  the4Momentum.setE(aPrimary.GetTotalEnergy());
53 }
54 
56 {
57  TimeOfCreation = 0.;
59  isSplit = false;
60  theDefinition = aNucleon.GetParticleType();
61  the4Momentum = aNucleon.GetMomentum();
62  thePosition = aNucleon.GetPosition();
63  curStatus = 0;
64 }
65 
67 {
68  TimeOfCreation = 0.;
70  isSplit = false;
71  theDefinition = aNucleon->GetDefinition();
72  the4Momentum = aNucleon->Get4Momentum();
73  thePosition = aNucleon->GetPosition();
74  curStatus = 0;
75 }
76 
78 {
79  TimeOfCreation = 0.;
81  isSplit = false;
82  theDefinition = right.GetDefinition();
83  the4Momentum = right.Get4Momentum();
84  thePosition = right.GetPosition();
85  curStatus = 0;
86 }
87 
88 
90 {
91 }
92 
93 
95 {
96  throw G4HadronicException(__FILE__, __LINE__,
97  "G4VSplitableHadron::operator= meant to not be accessable");
98  return *this;
99 }
100 
101 
103 {
104  return this==&right;
105 }
106 
108 {
109  return this!=&right;
110 }
111 
112 
114 {
115 }
116 
const G4ParticleDefinition * GetDefinition() const
const G4ParticleDefinition * theDefinition
void setVect(const Hep3Vector &)
const G4ParticleDefinition * GetDefinition() const
int operator!=(const G4VSplitableHadron &right) const
const G4LorentzVector & GetMomentum() const
Definition: G4Nucleon.hh:71
const G4ThreeVector & GetPosition() const
Definition: G4Nucleon.hh:138
G4double GetTotalEnergy() const
const G4ThreeVector & GetPosition() const
const G4VSplitableHadron & operator=(const G4VSplitableHadron &right)
G4ThreeVector GetMomentum() const
virtual void SplitUp()=0
virtual const G4ThreeVector & GetPosition() const =0
const G4ParticleDefinition * GetParticleType() const
Definition: G4Nucleon.hh:83
const G4LorentzVector & Get4Momentum() const
G4LorentzVector the4Momentum
int operator==(const G4VSplitableHadron &right) const
virtual const G4ParticleDefinition * GetDefinition() const =0
virtual const G4LorentzVector & Get4Momentum() const =0