PSCF v1.2
rpg/scft/iterator/ImposedFieldsGenerator.h
1#ifndef RPG_IMPOSED_FIELDS_GENERATOR_H
2#define RPG_IMPOSED_FIELDS_GENERATOR_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 <rpg/scft/iterator/Iterator.h>
12#include <pscf/iterator/ImposedFieldsTmpl.h>
13
14namespace Pscf {
15namespace Rpg {
16
17 using namespace Util;
18
19 template <int D>
20 class System;
21
27 template <int D>
29 {
30
31 public:
32
39
44
47
48 protected:
49
75 virtual double modifyStress(int paramId, double stress) const;
76
80
81 private:
82
92 void createGenerators();
93
95 System<D>* sysPtr_;
96
97 };
98
99 #ifndef RPG_IMPOSED_FIELDS_GENERATOR_TPP
100 extern template class ImposedFieldsGenerator<1>;
101 extern template class ImposedFieldsGenerator<2>;
102 extern template class ImposedFieldsGenerator<3>;
103 #endif
104
105} // namespace Rpg
106} // namespace Pscf
107#endif
Base class defining mask & external fields to impose on the calculation.
FieldGenerator * fieldGenPtr2_
Pointer to the second FieldGenerator object (optional).
FieldGenerator * fieldGenPtr1_
Pointer to the first FieldGenerator object (required).
std::string type() const
Get the type string associated with this object.
Class defining mask & external fields to impose on the calculation.
virtual double modifyStress(int paramId, double stress) const
Modify the stress value if necessary.
Main class for calculations that represent one system.
Definition rpg/System.h:107
void setClassName(const char *className)
Set class name string.
bool isActive() const
Is this parameter active?
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.