File indexing completed on 2025-11-02 09:36:17
0001
0002
0003
0004
0005
0006
0007 #pragma once
0008
0009 #include <memory>
0010
0011 #include "celeritas/phys/Applicability.hh"
0012 #include "celeritas/phys/ImportedProcessAdapter.hh"
0013 #include "celeritas/phys/ParticleParams.hh"
0014 #include "celeritas/phys/Process.hh"
0015
0016 namespace celeritas
0017 {
0018
0019
0020
0021
0022 class MuIonizationProcess : public Process
0023 {
0024 public:
0025
0026
0027 using Energy = units::MevEnergy;
0028 using SPConstParticles = std::shared_ptr<ParticleParams const>;
0029 using SPConstImported = std::shared_ptr<ImportedProcesses const>;
0030
0031
0032
0033 struct Options
0034 {
0035
0036 Energy bragg_icru73qo_upper_limit{0.2};
0037
0038 Energy bethe_bloch_upper_limit{1e3};
0039 };
0040
0041 public:
0042
0043 MuIonizationProcess(SPConstParticles particles,
0044 SPConstImported process_data,
0045 Options options);
0046
0047
0048 VecModel build_models(ActionIdIter start_id) const final;
0049
0050
0051 StepLimitBuilders step_limits(Applicability applicability) const final;
0052
0053
0054 bool supports_integral_xs() const final { return true; }
0055
0056
0057 bool applies_at_rest() const final { return imported_.applies_at_rest(); }
0058
0059
0060 std::string_view label() const final;
0061
0062 private:
0063 SPConstParticles particles_;
0064 ImportedProcessAdapter imported_;
0065 Options options_;
0066 };
0067
0068
0069 }