aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp')
-rw-r--r--Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp
index 280c1cfd4..c9bede891 100644
--- a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp
+++ b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp
@@ -38,22 +38,21 @@ namespace pxr_sr = picsar::multi_physics::utils::serialization;
QuantumSynchrotronGetOpticalDepth
QuantumSynchrotronEngine::build_optical_depth_functor ()
{
- return QuantumSynchrotronGetOpticalDepth();
+ return {};
}
QuantumSynchrotronEvolveOpticalDepth QuantumSynchrotronEngine::build_evolve_functor ()
{
AMREX_ALWAYS_ASSERT(m_lookup_tables_initialized);
- return QuantumSynchrotronEvolveOpticalDepth(m_dndt_table.get_view(),
- m_qs_minimum_chi_part);
+ return {m_dndt_table.get_view(), m_qs_minimum_chi_part};
}
QuantumSynchrotronPhotonEmission QuantumSynchrotronEngine::build_phot_em_functor ()
{
AMREX_ALWAYS_ASSERT(m_lookup_tables_initialized);
- return QuantumSynchrotronPhotonEmission(m_phot_em_table.get_view());
+ return {m_phot_em_table.get_view()};
}