diff options
Diffstat (limited to 'Source/Particles/ElementaryProcess')
4 files changed, 8 insertions, 14 deletions
diff --git a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H index 3709091bc..cf04d86fa 100644 --- a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H +++ b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H @@ -82,8 +82,7 @@ public: * Constructor does nothing because optical depth initialization * does not require control parameters or lookup tables. */ - BreitWheelerGetOpticalDepth () - {} + BreitWheelerGetOpticalDepth () = default; /** * () operator is just a thin wrapper around a very simple function to @@ -112,7 +111,7 @@ public: /** * Default constructor: it leaves the functor in a non-initialized state. */ - BreitWheelerEvolveOpticalDepth (){} + BreitWheelerEvolveOpticalDepth () = default; /** @@ -200,7 +199,7 @@ public: /** * Default constructor: it leaves the functor in a non-initialized state. */ - BreitWheelerGeneratePairs (){} + BreitWheelerGeneratePairs () = default; /** * Constructor acquires pointers to control parameters and @@ -297,7 +296,7 @@ public: /** * Constructor requires no arguments. */ - BreitWheelerEngine (); + BreitWheelerEngine () = default; /** * Builds the functor to initialize the optical depth diff --git a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.cpp b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.cpp index 22a47a714..152b3b654 100644 --- a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.cpp +++ b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.cpp @@ -33,8 +33,6 @@ namespace pxr_sr = picsar::multi_physics::utils::serialization; // Factory class ============================= -BreitWheelerEngine::BreitWheelerEngine (){} - BreitWheelerGetOpticalDepth BreitWheelerEngine::build_optical_depth_functor () const { diff --git a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H index b47fd1e09..b7d83b11f 100644 --- a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H +++ b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H @@ -81,8 +81,7 @@ public: * Constructor does nothing because optical depth initialization * does not require control parameters or lookup tables. */ - QuantumSynchrotronGetOpticalDepth () - {} + QuantumSynchrotronGetOpticalDepth () = default; /** * () operator is just a thin wrapper around a very simple function to @@ -111,7 +110,7 @@ public: /** * Default constructor: it leaves the functor in a non-initialized state. */ - QuantumSynchrotronEvolveOpticalDepth (){} + QuantumSynchrotronEvolveOpticalDepth () = default; /** * Constructor to be used to initialize the functor. @@ -184,7 +183,7 @@ public: /** * Default constructor: it leaves the functor in a non-initialized state. */ - QuantumSynchrotronPhotonEmission (){} + QuantumSynchrotronPhotonEmission () = default; /** * Constructor acquires pointers to control parameters and @@ -277,7 +276,7 @@ public: /** * Constructor requires no arguments. */ - QuantumSynchrotronEngine (); + QuantumSynchrotronEngine () = default; /** * Builds the functor to initialize the optical depth diff --git a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp index 958b0221a..b1efe865e 100644 --- a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp +++ b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.cpp @@ -33,8 +33,6 @@ namespace pxr_sr = picsar::multi_physics::utils::serialization; // Factory class ============================= -QuantumSynchrotronEngine::QuantumSynchrotronEngine (){} - QuantumSynchrotronGetOpticalDepth QuantumSynchrotronEngine::build_optical_depth_functor () { |