blob: b55149187d6e5b14b9b96405b3780aa4de62de1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "QuantumSyncEngineWrapper.H"
//This file provides a wrapper aroud the quantum_sync engine
//provided by the PICSAR library
using namespace picsar::multi_physics;
// Factory class =============================
QuantumSynchrotronEngine::QuantumSynchrotronEngine (){}
QuantumSynchrotronGetOpticalDepth
QuantumSynchrotronEngine::build_optical_depth_functor ()
{
return QuantumSynchrotronGetOpticalDepth();
}
//============================================
|