aboutsummaryrefslogtreecommitdiff
path: root/Source/QED/BreitWheelerEngineWrapper.cpp
diff options
context:
space:
mode:
authorGravatar Luca Fedeli <luca.fedeli@cea.fr> 2019-10-10 13:58:31 +0200
committerGravatar Luca Fedeli <luca.fedeli@cea.fr> 2019-10-10 13:58:31 +0200
commit0c11a538def7e66cd6e09c09e206da5a5460f8cc (patch)
treeb2a07af0bf5d86ec3d1bc05a72afa4d88e9e2489 /Source/QED/BreitWheelerEngineWrapper.cpp
parent431818ad7bb72bc5396c7a870024f310de6f055c (diff)
parent96ea487480fc7ce60eb20895ca4cc20cbba5888d (diff)
downloadWarpX-0c11a538def7e66cd6e09c09e206da5a5460f8cc.tar.gz
WarpX-0c11a538def7e66cd6e09c09e206da5a5460f8cc.tar.zst
WarpX-0c11a538def7e66cd6e09c09e206da5a5460f8cc.zip
merging with qed_phys_part_with_lambda
Diffstat (limited to 'Source/QED/BreitWheelerEngineWrapper.cpp')
-rw-r--r--Source/QED/BreitWheelerEngineWrapper.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/QED/BreitWheelerEngineWrapper.cpp b/Source/QED/BreitWheelerEngineWrapper.cpp
index 72fe06d63..97934589a 100644
--- a/Source/QED/BreitWheelerEngineWrapper.cpp
+++ b/Source/QED/BreitWheelerEngineWrapper.cpp
@@ -47,16 +47,16 @@ bool BreitWheelerEvolveOpticalDepth::operator()(
// Factory class =============================
-BreitWheelerEngine::BreitWheelerEngine(){}
+BreitWheelerEngine::BreitWheelerEngine (){}
//Builds the functor to initialize the optical depth
-BreitWheelerGetOpticalDepth BreitWheelerEngine::build_optical_depth_functor()
+BreitWheelerGetOpticalDepth BreitWheelerEngine::build_optical_depth_functor ()
{
return BreitWheelerGetOpticalDepth();
}
//Builds the functor to evolve the optical depth
-BreitWheelerEvolveOpticalDepth BreitWheelerEngine::build_evolve_functor()
+BreitWheelerEvolveOpticalDepth BreitWheelerEngine::build_evolve_functor ()
{
AMREX_ALWAYS_ASSERT(lookup_tables_initialized);
@@ -66,7 +66,7 @@ BreitWheelerEvolveOpticalDepth BreitWheelerEngine::build_evolve_functor()
//Initializes the Lookup tables using the default settings
//provided by the library
-void BreitWheelerEngine::computes_lookup_tables_default()
+void BreitWheelerEngine::computes_lookup_tables_default ()
{
//A control parameters structure
//with the default values provided by the library
@@ -77,13 +77,13 @@ void BreitWheelerEngine::computes_lookup_tables_default()
lookup_tables_initialized = true;
}
-bool BreitWheelerEngine::are_lookup_tables_initialized() const
+bool BreitWheelerEngine::are_lookup_tables_initialized () const
{
return lookup_tables_initialized;
}
//Private function which actually computes the lookup tables
-void BreitWheelerEngine::computes_lookup_tables(
+void BreitWheelerEngine::computes_lookup_tables (
WarpXBreitWheelerWrapperCtrl ctrl)
{
//Lambda is not actually used if S.I. units are enabled