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

#include <G4INCLParticleEntryAvatar.hh>

+ Inheritance diagram for G4INCL::ParticleEntryAvatar:

Public Member Functions

 ParticleEntryAvatar (G4double, G4INCL::Nucleus *, G4INCL::Particle *, EntryType=Default)
 
virtual ~ParticleEntryAvatar ()
 
virtual G4INCL::IChannelgetChannel ()
 
ParticleList getParticles () const
 
virtual void preInteraction ()
 
virtual void postInteraction (FinalState *)
 
std::string dump () const
 
EntryType getEntryType () const
 
- Public Member Functions inherited from G4INCL::IAvatar
 IAvatar ()
 
 IAvatar (G4double time)
 
virtual ~IAvatar ()
 
FinalStategetFinalState ()
 
void fillFinalState (FinalState *fs)
 
G4double getTime () const
 
AvatarType getType () const
 
G4bool isACollision () const
 
G4bool isADecay () const
 
void setType (AvatarType t)
 
long getID () const
 
std::string toString ()
 

Additional Inherited Members

- Protected Attributes inherited from G4INCL::IAvatar
G4double theTime
 

Detailed Description

Definition at line 50 of file G4INCLParticleEntryAvatar.hh.

Constructor & Destructor Documentation

◆ ParticleEntryAvatar()

G4INCL::ParticleEntryAvatar::ParticleEntryAvatar ( G4double time,
G4INCL::Nucleus * nucleus,
G4INCL::Particle * particle,
EntryType EType = Default )

Definition at line 50 of file G4INCLParticleEntryAvatar.cc.

54 :IAvatar(time), theNucleus(nucleus), theParticle(particle), theEType(EType)
55 {
57 }
void setType(AvatarType t)
@ ParticleEntryAvatarType

◆ ~ParticleEntryAvatar()

G4INCL::ParticleEntryAvatar::~ParticleEntryAvatar ( )
virtual

Definition at line 59 of file G4INCLParticleEntryAvatar.cc.

60 {}

Member Function Documentation

◆ dump()

std::string G4INCL::ParticleEntryAvatar::dump ( ) const
virtual

Implements G4INCL::IAvatar.

Definition at line 62 of file G4INCLParticleEntryAvatar.cc.

62 {
63 std::stringstream ss;
64 ss << "(avatar " << theTime <<" 'particle-entry" << '\n'
65 << "(list " << '\n'
66 << theParticle->dump()
67 << "))" << '\n';
68 return ss.str();
69 }

◆ getChannel()

IChannel * G4INCL::ParticleEntryAvatar::getChannel ( )
virtual

Implements G4INCL::IAvatar.

Definition at line 75 of file G4INCLParticleEntryAvatar.cc.

75 {
76 if(theEType == APAR){
77 return new PbarAtrestEntryChannel(theNucleus, theParticle);
78 INCL_DEBUG("Particle " << theParticle->getID() << " is trying to enter at rest" << '\n');
79 }
80 else {
81 return new ParticleEntryChannel(theNucleus, theParticle);
82 }
83 }
#define INCL_DEBUG(x)

◆ getEntryType()

EntryType G4INCL::ParticleEntryAvatar::getEntryType ( ) const
inline

Definition at line 66 of file G4INCLParticleEntryAvatar.hh.

66{ return theEType; }; //D

◆ getParticles()

ParticleList G4INCL::ParticleEntryAvatar::getParticles ( ) const
inlinevirtual

Implements G4INCL::IAvatar.

Definition at line 55 of file G4INCLParticleEntryAvatar.hh.

55 {
56 ParticleList theParticleList;
57 theParticleList.push_back(theParticle);
58 return theParticleList;
59 };

◆ postInteraction()

void G4INCL::ParticleEntryAvatar::postInteraction ( FinalState * )
virtual

Implements G4INCL::IAvatar.

Definition at line 71 of file G4INCLParticleEntryAvatar.cc.

71 {
72 theParticle->rpCorrelate();
73 }

◆ preInteraction()

virtual void G4INCL::ParticleEntryAvatar::preInteraction ( )
inlinevirtual

Implements G4INCL::IAvatar.

Definition at line 61 of file G4INCLParticleEntryAvatar.hh.

61{};

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