Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4QMDParticipant Class Reference

#include <G4QMDParticipant.hh>

Public Member Functions

 G4QMDParticipant (const G4ParticleDefinition *, G4ThreeVector, G4ThreeVector)
 
 ~G4QMDParticipant ()
 
void SetDefinition (const G4ParticleDefinition *pd)
 
const G4ParticleDefinitionGetDefinition ()
 
void SetPosition (G4ThreeVector r)
 
G4ThreeVector GetPosition ()
 
void SetMomentum (G4ThreeVector p)
 
G4ThreeVector GetMomentum ()
 
G4double GetMass ()
 
G4LorentzVector Get4Momentum ()
 
G4double GetKineticEnergy ()
 
G4int GetBaryonNumber ()
 
G4int GetNuc ()
 
G4int GetChargeInUnitOfEplus ()
 
void UnsetInitialMark ()
 
void UnsetHitMark ()
 
G4bool IsThisHit ()
 
void SetHitMark ()
 
void SetProjectile ()
 
void SetTarget ()
 
G4bool IsThisProjectile ()
 
G4bool IsThisTarget ()
 

Detailed Description

Definition at line 48 of file G4QMDParticipant.hh.

Constructor & Destructor Documentation

◆ G4QMDParticipant()

G4QMDParticipant::G4QMDParticipant ( const G4ParticleDefinition * pd,
G4ThreeVector p,
G4ThreeVector r )

Definition at line 30 of file G4QMDParticipant.cc.

31: definition ( pd )
32, momentum ( p )
33, position ( r )
34, projectile ( false )
35, target ( false )
36, hit ( false )
37{
38 ;
39}

◆ ~G4QMDParticipant()

G4QMDParticipant::~G4QMDParticipant ( )

Definition at line 43 of file G4QMDParticipant.cc.

44{
45 ;
46}

Member Function Documentation

◆ Get4Momentum()

G4LorentzVector G4QMDParticipant::Get4Momentum ( )

Definition at line 50 of file G4QMDParticipant.cc.

51{
52 G4LorentzVector p4 ( momentum , std::sqrt ( G4Pow::GetInstance()->powN ( definition->GetPDGMass()/GeV , 2 ) + momentum*momentum ) );
53 return p4;
54}
CLHEP::HepLorentzVector G4LorentzVector
static G4Pow * GetInstance()
Definition G4Pow.cc:41

Referenced by GetKineticEnergy().

◆ GetBaryonNumber()

G4int G4QMDParticipant::GetBaryonNumber ( )
inline

Definition at line 70 of file G4QMDParticipant.hh.

70{ return definition->GetBaryonNumber(); };

◆ GetChargeInUnitOfEplus()

G4int G4QMDParticipant::GetChargeInUnitOfEplus ( )
inline

Definition at line 73 of file G4QMDParticipant.hh.

73{ return int ( definition->GetPDGCharge()/CLHEP::eplus ); };

◆ GetDefinition()

const G4ParticleDefinition * G4QMDParticipant::GetDefinition ( )
inline

Definition at line 56 of file G4QMDParticipant.hh.

56{ return definition; };

Referenced by G4LightIonQMDReaction::ApplyYourself(), and G4QMDReaction::ApplyYourself().

◆ GetKineticEnergy()

G4double G4QMDParticipant::GetKineticEnergy ( )
inline

Definition at line 68 of file G4QMDParticipant.hh.

68{ return Get4Momentum().e() - GetMass(); };
G4LorentzVector Get4Momentum()

◆ GetMass()

G4double G4QMDParticipant::GetMass ( )
inline

Definition at line 64 of file G4QMDParticipant.hh.

64{ return definition->GetPDGMass()/CLHEP::GeV; };

Referenced by G4LightIonQMDNucleus::CalEnergyAndAngularMomentumInCM(), G4QMDNucleus::CalEnergyAndAngularMomentumInCM(), and GetKineticEnergy().

◆ GetMomentum()

◆ GetNuc()

G4int G4QMDParticipant::GetNuc ( )
inline

Definition at line 71 of file G4QMDParticipant.hh.

71{ return definition->GetBaryonNumber(); };

◆ GetPosition()

◆ IsThisHit()

G4bool G4QMDParticipant::IsThisHit ( )
inline

Definition at line 77 of file G4QMDParticipant.hh.

77{ return hit; }

◆ IsThisProjectile()

G4bool G4QMDParticipant::IsThisProjectile ( )
inline

Definition at line 82 of file G4QMDParticipant.hh.

82{ return projectile; }

◆ IsThisTarget()

G4bool G4QMDParticipant::IsThisTarget ( )
inline

Definition at line 83 of file G4QMDParticipant.hh.

83{ return target; }

◆ SetDefinition()

void G4QMDParticipant::SetDefinition ( const G4ParticleDefinition * pd)
inline

Definition at line 55 of file G4QMDParticipant.hh.

55{ definition = pd; };

◆ SetHitMark()

void G4QMDParticipant::SetHitMark ( )
inline

Definition at line 78 of file G4QMDParticipant.hh.

78{ hit = true; }

◆ SetMomentum()

void G4QMDParticipant::SetMomentum ( G4ThreeVector p)
inline

Definition at line 61 of file G4QMDParticipant.hh.

61{ momentum = p; };

◆ SetPosition()

void G4QMDParticipant::SetPosition ( G4ThreeVector r)
inline

Definition at line 58 of file G4QMDParticipant.hh.

58{ position = r; };

◆ SetProjectile()

void G4QMDParticipant::SetProjectile ( )
inline

Definition at line 80 of file G4QMDParticipant.hh.

80{ projectile = true; }

◆ SetTarget()

void G4QMDParticipant::SetTarget ( )
inline

Definition at line 81 of file G4QMDParticipant.hh.

81{ target = true; }

◆ UnsetHitMark()

void G4QMDParticipant::UnsetHitMark ( )
inline

Definition at line 76 of file G4QMDParticipant.hh.

76{ hit = false; }

◆ UnsetInitialMark()

void G4QMDParticipant::UnsetInitialMark ( )
inline

Definition at line 75 of file G4QMDParticipant.hh.

75{ projectile = false; target = false; }

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