PSCF v1.2
rpg/fts/analyzer/Analyzer.h
1#ifndef RPG_ANALYZER_H
2#define RPG_ANALYZER_H
3
4#include <util/param/ParamComposite.h> // base class
5#include <util/misc/FileMaster.h> // member variable
6
7#include <string>
8#include <iostream>
9#include <fstream>
10
11namespace Pscf {
12namespace Rpg {
13
14 using namespace Util;
15
32 template <int D>
33 class Analyzer : public ParamComposite
34 {
35
36 public:
37
41 Analyzer();
42
46 virtual ~Analyzer();
47
55 virtual void readParameters(std::istream& in);
56
67 virtual void setup()
68 {}
69
79 virtual void sample(long iStep) = 0;
80
86 virtual void output()
87 {}
88
92 int interval() const;
93
99 bool isAtInterval(long counter) const;
100
101 // Static members
102
106 static long baseInterval;
107
111 static void initStatic();
112
113 protected:
114
119
125 void readInterval(std::istream &in);
126
132 void readOutputFileName(std::istream &in);
133
140
144 const std::string& outputFileName() const;
145
149 std::string outputFileName(const std::string& suffix) const;
150
151 private:
152
154 long interval_;
155
157 std::string outputFileName_;
158
160 FileMaster* fileMasterPtr_;
161
162 };
163
164 // Inline methods
165
166 /*
167 * Return interval value.
168 */
169 template <int D>
170 inline int Analyzer<D>::interval() const
171 { return interval_; }
172
173 /*
174 * Return true iff the counter parameter is a multiple of the interval.
175 */
176 template <int D>
177 inline bool Analyzer<D>::isAtInterval(long counter) const
178 { return (counter%interval_ == 0); }
179
180 /*
181 * Get the outputFileName string.
182 */
183 template <int D>
184 inline const std::string& Analyzer<D>::outputFileName() const
185 { return outputFileName_; }
186
187 // Method template
188
189 #if 0
190 /*
191 * Serialize to/from an archive.
192 */
193 template <class Archive>
194 void Analyzer<D>::serialize(Archive& ar, const unsigned int version)
195 {
196 ar & interval_;
197 ar & outputFileName_;
198 }
199 #endif
200
201 #ifndef RPG_ANALYZER_TPP
202 // Suppress implicit instantiation
203 extern template class Analyzer<1>;
204 extern template class Analyzer<2>;
205 extern template class Analyzer<3>;
206 #endif
207
208}
209}
210#endif
Abstract base for periodic output and/or analysis actions.
virtual void readParameters(std::istream &in)
Read parameters from archive.
static long baseInterval
The interval for every Analyzer must be a multiple of baseInterval.
virtual void sample(long iStep)=0
Calculate, analyze and/or output a physical quantity.
const std::string & outputFileName() const
Return outputFileName string.
Analyzer()
Default constructor.
void setFileMaster(FileMaster &fileMaster)
Set the FileMaster to use to open files.
static void initStatic()
Define and initialize baseInterval.
FileMaster & fileMaster()
Get the FileMaster by reference.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
virtual void setup()
Complete any required initialization.
virtual void output()
Output any results at the end of the simulation.
int interval() const
Get interval value.
void readInterval(std::istream &in)
Read interval from file, with error checking.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
A FileMaster manages input and output files for a simulation.
Definition FileMaster.h:143
void serialize(Archive &ar, const unsigned int version)
Serialize this ParamComponent as a string.
An object that can read multiple parameters from file.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.