diff options
author | 2019-10-10 13:58:31 +0200 | |
---|---|---|
committer | 2019-10-10 13:58:31 +0200 | |
commit | 0c11a538def7e66cd6e09c09e206da5a5460f8cc (patch) | |
tree | b2a07af0bf5d86ec3d1bc05a72afa4d88e9e2489 /Source/QED/QuantumSyncEngineWrapper.cpp | |
parent | 431818ad7bb72bc5396c7a870024f310de6f055c (diff) | |
parent | 96ea487480fc7ce60eb20895ca4cc20cbba5888d (diff) | |
download | WarpX-0c11a538def7e66cd6e09c09e206da5a5460f8cc.tar.gz WarpX-0c11a538def7e66cd6e09c09e206da5a5460f8cc.tar.zst WarpX-0c11a538def7e66cd6e09c09e206da5a5460f8cc.zip |
merging with qed_phys_part_with_lambda
Diffstat (limited to 'Source/QED/QuantumSyncEngineWrapper.cpp')
-rw-r--r-- | Source/QED/QuantumSyncEngineWrapper.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Source/QED/QuantumSyncEngineWrapper.cpp b/Source/QED/QuantumSyncEngineWrapper.cpp index 544be075e..90bd9cefc 100644 --- a/Source/QED/QuantumSyncEngineWrapper.cpp +++ b/Source/QED/QuantumSyncEngineWrapper.cpp @@ -47,16 +47,17 @@ bool QuantumSynchrotronEvolveOpticalDepth::operator()( // Factory class ============================= -QuantumSynchrotronEngine::QuantumSynchrotronEngine(){} +QuantumSynchrotronEngine::QuantumSynchrotronEngine (){} //Builds the functor to evolve the optical depth -QuantumSynchrotronGetOpticalDepth QuantumSynchrotronEngine::build_optical_depth_functor() +QuantumSynchrotronGetOpticalDepth +QuantumSynchrotronEngine::build_optical_depth_functor () { return QuantumSynchrotronGetOpticalDepth(); } //Builds the functor to evolve the optical depth -QuantumSynchrotronEvolveOpticalDepth QuantumSynchrotronEngine::build_evolve_functor() +QuantumSynchrotronEvolveOpticalDepth QuantumSynchrotronEngine::build_evolve_functor () { AMREX_ALWAYS_ASSERT(lookup_tables_initialized); @@ -65,7 +66,7 @@ QuantumSynchrotronEvolveOpticalDepth QuantumSynchrotronEngine::build_evolve_func //Initializes the Lookup tables using the default settings //provided by the library -void QuantumSynchrotronEngine::computes_lookup_tables_default() +void QuantumSynchrotronEngine::computes_lookup_tables_default () { //A control parameters structure //with the default values provided by the library @@ -76,13 +77,13 @@ void QuantumSynchrotronEngine::computes_lookup_tables_default() lookup_tables_initialized = true; } -bool QuantumSynchrotronEngine::are_lookup_tables_initialized() const +bool QuantumSynchrotronEngine::are_lookup_tables_initialized () const { return lookup_tables_initialized; } //Private function which actually computes the lookup tables -void QuantumSynchrotronEngine::computes_lookup_tables( +void QuantumSynchrotronEngine::computes_lookup_tables ( WarpXQuantumSynchrotronWrapperCtrl ctrl) { //Lambda is not actually used if S.I. units are enabled |