PSCF v1.2
fieldHeader.tpp
1#ifndef PRDC_FIELD_HEADER_TPP
2#define PRDC_FIELD_HEADER_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 "fieldHeader.h"
12
13#include <util/format/Dbl.h>
14#include <util/format/Int.h>
15#include <iomanip>
16
17namespace Pscf {
18namespace Prdc {
19
20 using namespace Util;
21
22 /*
23 * Read common part of field header (fortran PSCF format).
24 */
25 template <int D>
26 void readFieldHeader(std::istream& in,
27 int& ver1, int& ver2,
28 UnitCell<D>& cell,
29 std::string& groupName,
30 int& nMonomer)
31 {
32 std::string label;
33
34 // Read format v1 v2
35 in >> label;
36 UTIL_CHECK(label == "format");
37 in >> ver1;
38 in >> ver2;
39
40 // Read dimension of space
41 in >> label;
42 UTIL_CHECK(label == "dim");
43 int dim;
44 in >> dim;
45 UTIL_CHECK(dim == D);
46
47 // Read unit cell lattice type, number of parameters, parameters
48 // Function declared in UnitCell.h and defined in UnitCell.tpp
49 readUnitCellHeader(in, cell);
50
51 // Optionally read groupName
52 in >> label;
53 groupName = "";
54 if (label == "group_name") {
55 in >> groupName;
56 in >> label;
57 }
58
59 // Read nMonomer value
60 UTIL_CHECK(label == "N_monomer");
61 in >> nMonomer;
62 UTIL_CHECK(nMonomer > 0);
63 }
64
65 /*
66 * Write common part of field header (fortran PSCF format).
67 */
68 template <int D>
69 void writeFieldHeader(std::ostream &out,
70 int ver1, int ver2,
71 UnitCell<D> const & cell,
72 std::string const & groupName,
73 int nMonomer)
74 {
75 // Write file format id and dimension of space D
76 out << "format " << Int(ver1,3) << " " << Int(ver2,3) << std::endl;
77 out << "dim" << std::endl
78 << " " << D << std::endl;
79
80 // Write unit cell lattice type, number of parameters, parameters
81 // Function declared in UnitCell.h and defined in UnitCell.tpp
82 writeUnitCellHeader(out, cell);
83
84 // Write group_name if not empty
85 if (groupName != "") {
86 out << "group_name" << std::endl
87 << " " << groupName << std::endl;
88 }
89
90 // Write nMonomer, number of monomer types
91 out << "N_monomer" << std::endl
92 << " " << nMonomer << std::endl;
93 }
94
95}
96}
97#endif
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
Wrapper for an int, for formatted ostream output.
Definition Int.h:37
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
void readUnitCellHeader(std::istream &in, UnitCell< D > &cell)
Read UnitCell<D> from a field file header (fortran PSCF format).
Definition UnitCell.tpp:61
void writeFieldHeader(std::ostream &out, int ver1, int ver2, UnitCell< D > const &cell, std::string const &groupName, int nMonomer)
Write common part of field header (fortran PSCF format).
void writeUnitCellHeader(std::ostream &out, UnitCell< D > const &cell)
Write UnitCell<D> to a field file header (fortran PSCF format).
Definition UnitCell.tpp:91
void readFieldHeader(std::istream &in, int &ver1, int &ver2, UnitCell< D > &cell, std::string &groupName, int &nMonomer)
Read common part of field header (fortran PSCF format).
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.