PSCF v1.2
rpc/fts/analyzer/Analyzer.tpp
1#ifndef RPC_ANALYZER_TPP
2#define RPC_ANALYZER_TPP
3
4#include "Analyzer.h"
5#include <util/misc/FileMaster.h>
6#include <util/archives/Serializable_includes.h>
7#include <util/global.h>
8
9
10namespace Pscf {
11namespace Rpc {
12
13 using namespace Util;
14
15 template <int D>
18
19 /*
20 * Default constructor.
21 */
22 template <int D>
25 interval_(1),
26 outputFileName_(""),
27 fileMasterPtr_(0)
28 {}
29
30 /*
31 * Destructor.
32 */
33 template <int D>
36
37 /*
38 * Read parameters from stream, default implementation.
39 */
40 template <int D>
41 void Analyzer<D>::readParameters(std::istream& in)
42 {
43 readInterval(in);
44 readOutputFileName(in);
45 }
46
47 /*
48 * Read the interval from parameter file, with error checking.
49 */
50 template <int D>
51 void Analyzer<D>::readInterval(std::istream &in)
52 {
53 // Check that baseInterval has a nonzero, positive value
54 if (baseInterval == 0) {
55 UTIL_THROW("baseInterval == 0");
56 }
57 if (baseInterval < 0) {
58 UTIL_THROW("baseInterval < 0");
59 }
60
61 // Optionally interval value (set to 1 by default)
62 interval_ = 1;
63 readOptional<long>(in, "interval", interval_);
64
65 // Postconditons
66 if (interval_ == 0) {
67 UTIL_THROW("interval_ == 0");
68 }
69 if (interval_ < 0) {
70 UTIL_THROW("interval_ < 0");
71 }
72 if (interval_ % baseInterval != 0) {
73 UTIL_THROW("interval is not a multiple of baseInterval");
74 }
75 }
76
77 template <int D>
78 void Analyzer<D>::readOutputFileName(std::istream &in)
79 { read<std::string>(in, "outputFileName", outputFileName_); }
80
81 /*
82 * Set the FileMaster.
83 */
84 template <int D>
86 { fileMasterPtr_ = &fileMaster; }
87
88 /*
89 * Get the FileMaster by reference.
90 */
91 template <int D>
93 {
94 assert(fileMasterPtr_);
95 return (*fileMasterPtr_);
96 }
97
98 /*
99 * Get the outputFileName string with an added suffix
100 */
101 template <int D>
102 std::string
103 Analyzer<D>::outputFileName(std::string suffix) const
104 {
105 std::string filename = outputFileName_;
106 filename += suffix;
107 return filename;
108 }
109
110}
111}
112#endif
Abstract base for periodic output and/or analysis actions.
static void initStatic()
Define and initialize baseInterval.
virtual void readParameters(std::istream &in)
Read parameters from archive.
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.
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.
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.