File: InterpolatorSpectralGeners.cpp

package info (click to toggle)
stopt 5.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,772 kB
  • sloc: cpp: 70,373; python: 5,942; makefile: 67; sh: 57
file content (13 lines) | stat: -rw-r--r-- 599 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "StOpt/core/grids/InterpolatorSpectralGeners.h"
// add include for all derived classes
#include "StOpt/core/grids/LinearInterpolatorSpectralGeners.h"
#include "StOpt/core/grids/LegendreInterpolatorSpectralGeners.h"
#include "StOpt/core/grids/SparseInterpolatorSpectralGeners.h"

// Register all wrappers
SerializationFactoryForInterpolatorSpectral::SerializationFactoryForInterpolatorSpectral()
{
    this->registerWrapper<LinearInterpolatorSpectralGeners>();
    this->registerWrapper<LegendreInterpolatorSpectralGeners>();
    this->registerWrapper<SparseInterpolatorSpectralGeners>();
}