ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
|
#include <acts/blob/master/Fatras/include/ActsFatras/Kernel/Process.hpp>
Public Member Functions | |
template<typename generator_t > | |
bool | operator() (generator_t &generator, const Acts::MaterialProperties &slab, Particle &particle, std::vector< Particle > &generated) const |
Public Attributes | |
physics_t | physics |
The physics interactions implementation. | |
input_selector_t | selectInput |
Input selection: if this process applies to material + particle. | |
output_particle_selector_t | selectOutputParticle |
Output selection: if the particle is still valid after the interaction. | |
child_particle_selector_t | selectChildParticle |
Child selection: if a generated child particle should be kept. | |
A simulation process based on a physics interaction plus selectors.
physics_t | is the physics interaction type |
input_selector_t | is the input material + particle selector |
output_particle_selector_t | is the output particle selector |
child_particle_selector_t | is the child particle selector |
The input selector defines whether the interaction is applied while the output selector defines a break condition, i.e. whether to continue simulating the particle propagation. The child selector is used to filter the generated child particles.
Definition at line 55 of file Process.hpp.
View newest version in sPHENIX GitHub at line 55 of file Process.hpp
|
inline |
Execute the physics process considering the configured selectors.
[in] | generator | is the random number generator |
[in] | slab | is the passed material |
[in,out] | particle | is the particle being updated |
[out] | generated | is the container of generated particles |
generator_t | must be a RandomNumberEngine |
Definition at line 75 of file Process.hpp.
View newest version in sPHENIX GitHub at line 75 of file Process.hpp
References ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::physics, ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::selectChildParticle, ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::selectInput, and ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::selectOutputParticle.
physics_t ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::physics |
The physics interactions implementation.
Definition at line 57 of file Process.hpp.
View newest version in sPHENIX GitHub at line 57 of file Process.hpp
Referenced by ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::operator()().
child_particle_selector_t ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::selectChildParticle |
Child selection: if a generated child particle should be kept.
Definition at line 63 of file Process.hpp.
View newest version in sPHENIX GitHub at line 63 of file Process.hpp
Referenced by BOOST_AUTO_TEST_CASE(), and ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::operator()().
input_selector_t ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::selectInput |
Input selection: if this process applies to material + particle.
Definition at line 59 of file Process.hpp.
View newest version in sPHENIX GitHub at line 59 of file Process.hpp
Referenced by BOOST_AUTO_TEST_CASE(), and ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::operator()().
output_particle_selector_t ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::selectOutputParticle |
Output selection: if the particle is still valid after the interaction.
Definition at line 61 of file Process.hpp.
View newest version in sPHENIX GitHub at line 61 of file Process.hpp
Referenced by BOOST_AUTO_TEST_CASE(), ActsFatras::makeChargedElectroMagneticPhysicsList(), and ActsFatras::Process< physics_t, input_selector_t, output_particle_selector_t, child_particle_selector_t >::operator()().