PSCF v1.2
rpg/fts/analyzer/StepLogger.h
1#ifndef RPG_STEP_LOGGER_H
2#define RPG_STEP_LOGGER_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "Analyzer.h"
12#include <util/global.h>
13
14namespace Pscf {
15namespace Rpg {
16
17 using namespace Util;
18
24 template <int D>
25 class StepLogger : public Analyzer<D>
26 {
27
28 public:
29
33 StepLogger();
34
38 virtual ~StepLogger()
39 {}
40
46 virtual void readParameters(std::istream& in);
47
53 virtual void sample(long iStep);
54
57
58 };
59
60 #ifndef RPG_STEP_LOGGER_TPP
61 // Suppress implicit instantiation
62 extern template class StepLogger<1>;
63 extern template class StepLogger<2>;
64 extern template class StepLogger<3>;
65 #endif
66
67}
68}
69#endif
Abstract base for periodic output and/or analysis actions.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
Periodically write snapshots to a trajectory file.
virtual void readParameters(std::istream &in)
Read interval and output file name.
virtual void sample(long iStep)
Write a frame/snapshot to trajectory file.
void setClassName(const char *className)
Set class name string.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.