File: SpaceGridGeners.cpp

package info (click to toggle)
stopt 6.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,264 kB
  • sloc: cpp: 75,778; python: 6,012; makefile: 72; sh: 57
file content (17 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "StOpt/core/grids/SpaceGridGeners.h"
// add include for all derived classes
#include "StOpt/core/grids/RegularLegendreGridGeners.h"
#include "StOpt/core/grids/GeneralSpaceGridGeners.h"
#include "StOpt/core/grids/RegularSpaceGridGeners.h"
#include "StOpt/core/grids/SparseSpaceGridBoundGeners.h"
#include "StOpt/core/grids/SparseSpaceGridNoBoundGeners.h"

// Register all wrappers
SerializationFactoryForSpaceGrid::SerializationFactoryForSpaceGrid()
{
    this->registerWrapper<RegularLegendreGridGeners>();
    this->registerWrapper<GeneralSpaceGridGeners>();
    this->registerWrapper<RegularSpaceGridGeners>();
    this->registerWrapper<SparseSpaceGridBoundGeners>();
    this->registerWrapper<SparseSpaceGridNoBoundGeners>();
}