PSCF v1.2
rpc/fts/analyzer/Analyzer.h
1#ifndef RPC_ANALYZER_H
2#define RPC_ANALYZER_H
3
4#include <util/param/ParamComposite.h> // base class
5
6#include <string>
7
8namespace Util {
9 class FileMaster;
10}
11
12namespace Pscf {
13namespace Rpc {
14
15 using namespace Util;
16
33 template <int D>
34 class Analyzer : public ParamComposite
35 {
36
37 public:
38
39 // Non-static Methods
40
44 Analyzer();
45
49 virtual ~Analyzer();
50
58 virtual void readParameters(std::istream& in);
59
71 virtual void setup()
72 {}
73
83 virtual void sample(long iStep) = 0;
84
90 virtual void output()
91 {}
92
96 int interval() const;
97
103 bool isAtInterval(long counter) const;
104
105 // Static members
106
110 static long baseInterval;
111
115 static void initStatic();
116
117 protected:
118
123
133 void readInterval(std::istream &in);
134
140 void readOutputFileName(std::istream &in);
141
148
152 const std::string& outputFileName() const;
153
159 std::string outputFileName(std::string suffix) const;
160
163
164 private:
165
167 long interval_;
168
170 std::string outputFileName_;
171
173 FileMaster* fileMasterPtr_;
174
175 };
176
177 // Inline methods
178
179 /*
180 * Return interval value.
181 */
182 template <int D>
183 inline int Analyzer<D>::interval() const
184 { return interval_; }
185
186 /*
187 * Return true iff the counter parameter is a multiple of the interval.
188 */
189 template <int D>
190 inline bool Analyzer<D>::isAtInterval(long counter) const
191 { return (counter%interval_ == 0); }
192
193 /*
194 * Get the outputFileName string.
195 */
196 template <int D>
197 inline const std::string& Analyzer<D>::outputFileName() const
198 { return outputFileName_; }
199
200 // Method template
201
202 #ifndef RPC_ANALYZER_TPP
203 // Suppress implicit instantiation
204 extern template class Analyzer<1>;
205 extern template class Analyzer<2>;
206 extern template class Analyzer<3>;
207 #endif
208
209}
210}
211#endif
Abstract base for periodic output and/or analysis actions.
virtual void setup()
Complete any required initialization.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
virtual void sample(long iStep)=0
Calculate, analyze and/or output a physical quantity.
static void initStatic()
Define and initialize baseInterval.
virtual void output()
Output any results at the end of the simulation.
virtual void readParameters(std::istream &in)
Read parameters from archive.
static long baseInterval
The interval for an Analyzer must be a multiple of baseInterval.
void setFileMaster(FileMaster &fileMaster)
Set the FileMaster to use to open files.
void readInterval(std::istream &in)
Optionally read interval from file, with error checking.
const std::string & outputFileName() const
Return outputFileName string.
FileMaster & fileMaster()
Get the FileMaster by reference.
int interval() const
Get interval value.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
Analyzer()
Default constructor.
A FileMaster manages input and output files for a simulation.
Definition FileMaster.h:143
An object that can read multiple parameters from file.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
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.