PSCF v1.2
BlockDescriptor.h
1#ifndef PSCF_BLOCK_DESCRIPTOR_H
2#define PSCF_BLOCK_DESCRIPTOR_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 "PolymerType.h"
12#include <util/containers/Pair.h>
13
14#include <iostream>
15
16namespace Pscf
17{
18
19 using namespace Util;
20
40 {
41 public:
42
47
51 virtual ~BlockDescriptor();
52
59 template <class Archive>
60 void serialize(Archive& ar, unsigned int versionId);
61
63
64
70 void setId(int id);
71
78 void setVertexIds(int vertexAId, int vertexBId);
79
85 void setMonomerId(int monomerId);
86
94 virtual void setLength(double length);
95
107 void setPolymerType(PolymerType::Enum type);
108
110
112
116 int id() const;
117
121 int monomerId() const;
122
126 const Pair<int>& vertexIds() const;
127
133 int vertexId(int i) const;
134
138 double length() const;
139
143 PolymerType::Enum polymerType() const;
144
146
147 private:
148
150 int id_;
151
153 int monomerId_;
154
156 double length_;
157
159 Pair<int> vertexIds_;
160
162 PolymerType::Enum polymerType_;
163
164 friend
165 std::istream& operator >> (std::istream& in, BlockDescriptor &block);
166
167 friend
168 std::ostream& operator << (std::ostream& out,
169 const BlockDescriptor &block);
170
171 };
172
197 std::istream& operator >> (std::istream& in, BlockDescriptor &block);
198
211 std::ostream&
212 operator << (std::ostream& out, const BlockDescriptor &block);
213
214 // Inline member functions
215
216 /*
217 * Get the id of this block.
218 */
219 inline int BlockDescriptor::id() const
220 { return id_; }
221
222 /*
223 * Get the monomer type id.
224 */
225 inline int BlockDescriptor::monomerId() const
226 { return monomerId_; }
227
228 /*
229 * Get the pair of associated vertex ids.
230 */
232 { return vertexIds_; }
233
234 /*
235 * Get id of an associated vertex.
236 */
237 inline int BlockDescriptor::vertexId(int i) const
238 { return vertexIds_[i]; }
239
240 /*
241 * Get the length (number of monomers) in this block.
242 */
243 inline double BlockDescriptor::length() const
244 { return length_; }
245
246 /*
247 * Get the polymer type (branched or linear).
248 */
249 inline PolymerType::Enum BlockDescriptor::polymerType() const
250 { return polymerType_; }
251
252 /*
253 * Serialize to/from an archive.
254 */
255 template <class Archive>
256 void BlockDescriptor::serialize(Archive& ar, unsigned int)
257 {
258 ar & id_;
259 ar & monomerId_;
260 ar & vertexIds_;
261 ar & length_;
262 }
263
264}
265#endif
Description of a linear homopolymer block within a block polymer.
double length() const
Get the length (number of monomers) in this block.
int vertexId(int i) const
Get id of an associated vertex.
void setId(int id)
Set the id for this block.
friend std::ostream & operator<<(std::ostream &out, const BlockDescriptor &block)
Output stream inserter (<<) for a BlockDescriptor.
void serialize(Archive &ar, unsigned int versionId)
Serialize to/from archive.
friend std::istream & operator>>(std::istream &in, BlockDescriptor &block)
Input stream extractor (>>) for a BlockDescriptor.
virtual ~BlockDescriptor()
Destructor.
int monomerId() const
Get the monomer type id.
const Pair< int > & vertexIds() const
Get the pair of associated vertex ids.
void setPolymerType(PolymerType::Enum type)
Set the polymer type (branched or linear).
PolymerType::Enum polymerType() const
Get the type of the parent polymer (branched or linear).
virtual void setLength(double length)
Set the length of this block.
void setVertexIds(int vertexAId, int vertexBId)
Set indices of associated vertices.
BlockDescriptor()
Constructor.
int id() const
Get the id of this block.
void setMonomerId(int monomerId)
Set the monomer type id.
An array of exactly 2 objects.
Definition Pair.h:24
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
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