PSCF v1.2
Monomer.h
1#ifndef PSCF_MONOMER_H
2#define PSCF_MONOMER_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 <string>
12#include <iostream>
13
14namespace Pscf
15{
16
32 class Monomer
33 {
34 public:
35
39 Monomer();
40
46 void setId(int id);
47
53 void setKuhn(double kuhn);
54
58 int id() const;
59
63 double kuhn() const;
64
71 template <class Archive>
72 void serialize(Archive ar, const unsigned int version);
73
74 private:
75
76 // Integer identifier
77 int id_;
78
79 // Statistical segment length / kuhn length
80 double kuhn_;
81
82 //friends
83
84 friend
85 std::istream& operator >> (std::istream& in, Monomer& monomer);
86
87 friend
88 std::ostream& operator << (std::ostream& out, const Monomer& monomer);
89
90 };
91
103 std::istream& operator >> (std::istream& in, Monomer& monomer);
104
112 std::ostream& operator << (std::ostream& out, const Monomer& monomer);
113
114 // inline member functions
115
116 /*
117 * Get monomer type index.
118 */
119 inline int Monomer::id() const
120 { return id_; }
121
122 /*
123 * Statistical segment length.
124 */
125 inline double Monomer::kuhn() const
126 { return kuhn_; }
127
128 /*
129 * Set statistical segment length.
130 *
131 * \param kuhn new value for statistical segement length
132 */
133 inline void Monomer::setKuhn(double kuhn)
134 { kuhn_ = kuhn; }
135
136 /*
137 * Serialize to or from an archive.
138 */
139 template <class Archive>
140 void Monomer::serialize(Archive ar, const unsigned int version)
141 {
142 ar & id_;
143 ar & kuhn_;
144 }
145
146}
147#endif
Descriptor for a monomer type.
Definition Monomer.h:33
void setKuhn(double kuhn)
Set statistical segment length.
Definition Monomer.h:133
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
Definition Monomer.h:140
void setId(int id)
Set the integer index for this monomer type.
Definition Monomer.cpp:18
Monomer()
Constructor.
Definition Monomer.cpp:13
double kuhn() const
Statistical segment length (random walk step size).
Definition Monomer.h:125
friend std::istream & operator>>(std::istream &in, Monomer &monomer)
Stream extractor (>>) for a Monomer.
Definition Monomer.cpp:24
int id() const
Unique integer index for monomer type.
Definition Monomer.h:119
friend std::ostream & operator<<(std::ostream &out, const Monomer &monomer)
Stream inserter (<<) for a Monomer.
Definition Monomer.cpp:34
PSCF package top-level namespace.
Definition param_pc.dox:1
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Definition Pair.h:44
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Definition Pair.h:57