PSCF v1.2
rpg/fts/analyzer/StepLogger.tpp
1#ifndef RPG_STEP_LOGGER_TPP
2#define RPG_STEP_LOGGER_TPP
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 "StepLogger.h"
12#include "Analyzer.h"
13#include <util/format/Int.h>
14#include <util/misc/Log.h>
15
16namespace Pscf {
17namespace Rpg {
18
19 using namespace Util;
20
21 /*
22 * Constructor.
23 */
24 template <int D>
26 : Analyzer<D>()
27 { setClassName("StepLogger"); }
28
29 /*
30 * Read interval and outputFileName.
31 */
32 template <int D>
33 void StepLogger<D>::readParameters(std::istream& in)
35
36 /*
37 * Periodically write a frame to file
38 */
39 template <int D>
40 void StepLogger<D>::sample(long iStep)
41 {
42 if (isAtInterval(iStep)) {
43 Log::file() << "iStep " << Int(iStep,10) << std::endl;
44 }
45 }
46
47}
48}
49#endif
Abstract base for periodic output and/or analysis actions.
void readInterval(std::istream &in)
Read interval from file, with error checking.
void setClassName(const char *className)
Set class name string.
virtual void readParameters(std::istream &in)
Read interval and output file name.
virtual void sample(long iStep)
Write a frame/snapshot to trajectory file.
Wrapper for an int, for formatted ostream output.
Definition Int.h:37
static std::ostream & file()
Get log ostream by reference.
Definition Log.cpp:57
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.