blob: bf06667f846c3ac12fc3d86040e5a727ba3882f1 (
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();
}
//============================================
|