PSCF v1.2
rpc/fts/analyzer/StepLogger.h
1#ifndef RPC_STEP_LOGGER_H
2#define RPC_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 Rpc {
16
17 using namespace Util;
18
26 template <int D>
27 class StepLogger : public Analyzer<D>
28 {
29
30 public:
31
35 StepLogger();
36
40 virtual ~StepLogger()
41 {}
42
48 virtual void readParameters(std::istream& in);
49
55 virtual void sample(long iStep);
56
59
60 };
61
62 #ifndef RPC_STEP_LOGGER_TPP
63 // Suppress implicit instantiation
64 extern template class StepLogger<1>;
65 extern template class StepLogger<2>;
66 extern template class StepLogger<3>;
67 #endif
68
69}
70}
71#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.