File: FullGridGeners.cpp

package info (click to toggle)
stopt 5.12%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 8,860 kB
  • sloc: cpp: 70,456; python: 5,950; makefile: 72; sh: 57
file content (13 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "StOpt/core/grids/FullGridGeners.h"
// add include for all derived classes
#include "StOpt/core/grids/RegularLegendreGridDerivedGeners.h"
#include "StOpt/core/grids/GeneralSpaceGridDerivedGeners.h"
#include "StOpt/core/grids/RegularSpaceGridDerivedGeners.h"

// Register all wrappers
SerializationFactoryForFullGrid::SerializationFactoryForFullGrid()
{
    this->registerWrapper<RegularLegendreGridDerivedGeners>();
    this->registerWrapper<GeneralSpaceGridDerivedGeners>();
    this->registerWrapper<RegularSpaceGridDerivedGeners>();
}