PSCF v1.2
rpc/fts/analyzer/AnalyzerManager.h
1#ifndef RPC_ANALYZER_MANAGER_H
2#define RPC_ANALYZER_MANAGER_H
3
4#include "Analyzer.h" // base class template parameter
5#include <util/param/Manager.h> // base class template
6
7namespace Pscf {
8namespace Rpc {
9
10 using namespace Util;
11
12 template <int D> class System;
13 template <int D> class Simulator;
14
15
23 template <int D>
24 class AnalyzerManager : public Manager< Analyzer<D> >
25 {
26
27 public:
28
35 AnalyzerManager(Simulator<D>& simulator, System<D>& system);
36
40 virtual ~AnalyzerManager();
41
47 virtual void readParameters(std::istream &in);
48
49 #if 0
55 virtual void loadParameters(Serializable::IArchive& ar);
56
62 virtual void save(Serializable::OArchive& ar);
63
64 #endif
65
74 void setup();
75
84 void sample(long iStep);
85
93 void output();
94
96
97 protected:
98
102
103 private:
104
108 Simulator<D>* simulatorPtr_;
109
113 System<D>* systemPtr_;
114
118 virtual Factory< Analyzer<D> >* newDefaultFactory() const;
119
120 };
121
122 #ifndef RPC_ANALZYER_MANAGER_TPP
123 // Suppress implicit instantiation
124 extern template class AnalyzerManager<1>;
125 extern template class AnalyzerManager<2>;
126 extern template class AnalyzerManager<3>;
127 #endif
128
129}
130}
131#endif
Manager for a list of Analyzer objects.
AnalyzerManager(Simulator< D > &simulator, System< D > &system)
Constructor.
void sample(long iStep)
Call sample method of each Analyzer.
virtual void readParameters(std::istream &in)
Read parameter file.
void setup()
Call initialize method of each Analyzer.
void output()
Call output method of each analyzer.
Abstract base for periodic output and/or analysis actions.
Field theoretic simulator (base class).
Definition rpc/System.h:38
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
Factory template.
Template container for pointers to objects with a common base class.
Definition Manager.h:39
virtual void loadParameters(Serializable::IArchive &ar)
Definition Manager.h:411
virtual void save(Serializable::OArchive &ar)
Definition Manager.h:448
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
void setClassName(const char *className)
Set class name string.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.