Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4Nucleon Class Reference

#include <G4Nucleon.hh>

Inheritance diagram for G4Nucleon:
G4VKineticNucleon

Public Member Functions

 G4Nucleon ()
 
 ~G4Nucleon ()
 
int operator== (const G4Nucleon &right) const
 
int operator!= (const G4Nucleon &right) const
 
G4Nucleonoperator= (const G4Nucleon &right)
 
void SetPosition (G4ThreeVector &aPosition)
 
virtual const G4ThreeVectorGetPosition () const
 
void SetMomentum (G4LorentzVector &aMomentum)
 
const G4LorentzVectorGetMomentum () const
 
virtual const G4LorentzVectorGet4Momentum () const
 
void SetBindingEnergy (G4double anEnergy)
 
G4double GetBindingEnergy () const
 
void SetParticleType (G4Proton *aProton)
 
void SetParticleType (G4Neutron *aNeutron)
 
void SetParticleType (G4AntiProton *aAntiProton)
 
void SetParticleType (G4AntiNeutron *aAntiNeutron)
 
G4ParticleDefinitionGetParticleType () const
 
virtual G4ParticleDefinitionGetDefinition () const
 
void Boost (const G4ThreeVector &beta)
 
void Boost (const G4LorentzVector &aMomentum)
 
void Hit (G4VSplitableHadron *aHit)
 
void Hit (G4int)
 
G4VSplitableHadronGetSplitableHadron () const
 
G4bool AreYouHit () const
 
- Public Member Functions inherited from G4VKineticNucleon
 G4VKineticNucleon ()
 
 G4VKineticNucleon (const G4VKineticNucleon &right)
 
virtual ~G4VKineticNucleon ()
 
const G4VKineticNucleonoperator= (const G4VKineticNucleon &right)
 
int operator== (const G4VKineticNucleon &right) const
 
int operator!= (const G4VKineticNucleon &right) const
 
virtual G4KineticTrackVectorDecay ()
 

Detailed Description

Definition at line 54 of file G4Nucleon.hh.

Constructor & Destructor Documentation

G4Nucleon::G4Nucleon ( )

Definition at line 38 of file G4Nucleon.cc.

39 : theBindingE(0.) , theParticleType(0), theSplitableHadron(0)
40 {}
G4Nucleon::~G4Nucleon ( )

Definition at line 42 of file G4Nucleon.cc.

43 {
44 }

Member Function Documentation

G4bool G4Nucleon::AreYouHit ( ) const
inline
void G4Nucleon::Boost ( const G4ThreeVector beta)
inline

Definition at line 87 of file G4Nucleon.hh.

References CLHEP::HepLorentzVector::boost().

87 { theMomentum.boost(beta); }
HepLorentzVector & boost(double, double, double)
void G4Nucleon::Boost ( const G4LorentzVector aMomentum)

Definition at line 46 of file G4Nucleon.cc.

References CLHEP::HepLorentzVector::dot(), CLHEP::HepLorentzVector::e(), CLHEP::HepLorentzVector::mag(), CLHEP::HepLorentzVector::setE(), CLHEP::HepLorentzVector::setVect(), and CLHEP::HepLorentzVector::vect().

47 {
48 // see e.g. CERNLIB short writeup U101 for the algorithm
49  G4double mass=aMomentum.mag();
50  G4double factor=
51  ( theMomentum.vect()*aMomentum.vect()/(aMomentum.e()+mass) - theMomentum.e() ) / mass;
52 
53  theMomentum.setE(1/mass*theMomentum.dot(aMomentum));
54  theMomentum.setVect(factor*aMomentum.vect() + theMomentum.vect());
55 }
double dot(const HepLorentzVector &) const
Hep3Vector vect() const
double mag() const
void setVect(const Hep3Vector &)
double G4double
Definition: G4Types.hh:76
virtual const G4LorentzVector& G4Nucleon::Get4Momentum ( ) const
inlinevirtual
G4double G4Nucleon::GetBindingEnergy ( ) const
inline
virtual G4ParticleDefinition* G4Nucleon::GetDefinition ( ) const
inlinevirtual
const G4LorentzVector& G4Nucleon::GetMomentum ( void  ) const
inline

Definition at line 71 of file G4Nucleon.hh.

Referenced by G4VSplitableHadron::G4VSplitableHadron().

71 {return theMomentum;}
G4ParticleDefinition* G4Nucleon::GetParticleType ( ) const
inline
virtual const G4ThreeVector& G4Nucleon::GetPosition ( void  ) const
inlinevirtual
G4VSplitableHadron* G4Nucleon::GetSplitableHadron ( ) const
inline

Definition at line 96 of file G4Nucleon.hh.

Referenced by G4FTFParticipants::GetList(), G4FTFModel::GetStrings(), operator=(), and G4FTFModel::~G4FTFModel().

96 { return theSplitableHadron;}
void G4Nucleon::Hit ( G4VSplitableHadron aHit)
inline

Definition at line 90 of file G4Nucleon.hh.

Referenced by G4FTFParticipants::GetList(), G4KineticTrack::Hit(), and G4QGSParticipants::SelectInteractions().

90 { theSplitableHadron=aHit;}
void G4Nucleon::Hit ( G4int  )
inline

Definition at line 92 of file G4Nucleon.hh.

93  {
94  theSplitableHadron=reinterpret_cast<G4VSplitableHadron *>(1111);
95  }
int G4Nucleon::operator!= ( const G4Nucleon right) const
inline

Definition at line 116 of file G4Nucleon.hh.

References right.

117 {
118  return this!=&right;
119 }
G4Nucleon & G4Nucleon::operator= ( const G4Nucleon right)
inline

Definition at line 121 of file G4Nucleon.hh.

References Get4Momentum(), GetBindingEnergy(), GetDefinition(), GetPosition(), and GetSplitableHadron().

122 {
123  if (this != &right)
124  {
125  thePosition=right.GetPosition();
126  theMomentum=right.Get4Momentum();
127  theBindingE=right.GetBindingEnergy();
128  theParticleType=right.GetDefinition();
129  theSplitableHadron=right.GetSplitableHadron();
130  }
131  return *this;
132 }
virtual const G4LorentzVector & Get4Momentum() const
Definition: G4Nucleon.hh:72
virtual const G4ThreeVector & GetPosition() const
Definition: G4Nucleon.hh:68
G4VSplitableHadron * GetSplitableHadron() const
Definition: G4Nucleon.hh:96
virtual G4ParticleDefinition * GetDefinition() const
Definition: G4Nucleon.hh:85
G4double GetBindingEnergy() const
Definition: G4Nucleon.hh:75
int G4Nucleon::operator== ( const G4Nucleon right) const
inline

Definition at line 112 of file G4Nucleon.hh.

References right.

113 {
114  return this==&right;
115 }
void G4Nucleon::SetBindingEnergy ( G4double  anEnergy)
inline

Definition at line 74 of file G4Nucleon.hh.

74 {theBindingE = anEnergy;}
void G4Nucleon::SetMomentum ( G4LorentzVector aMomentum)
inline

Definition at line 70 of file G4Nucleon.hh.

Referenced by G4QGSParticipants::SelectInteractions().

70 {theMomentum = aMomentum;}
void G4Nucleon::SetParticleType ( G4Proton aProton)
inline

Definition at line 77 of file G4Nucleon.hh.

Referenced by G4FTFModel::Init().

77 {theParticleType = aProton;}
void G4Nucleon::SetParticleType ( G4Neutron aNeutron)
inline

Definition at line 78 of file G4Nucleon.hh.

78 {theParticleType = aNeutron;}
void G4Nucleon::SetParticleType ( G4AntiProton aAntiProton)
inline

Definition at line 80 of file G4Nucleon.hh.

80 {theParticleType =aAntiProton;} //VU
void G4Nucleon::SetParticleType ( G4AntiNeutron aAntiNeutron)
inline

Definition at line 81 of file G4Nucleon.hh.

81 {theParticleType =aAntiNeutron;}//VU
void G4Nucleon::SetPosition ( G4ThreeVector aPosition)
inline

Definition at line 67 of file G4Nucleon.hh.

67 {thePosition = aPosition;}

The documentation for this class was generated from the following files: