PSCF v1.2
ParameterModifier.h
1#ifndef PSCF_PARAMETER_MODIFIER_H
2#define PSCF_PARAMETER_MODIFIER_H
3
4#include "pscf/sweep/ParameterType.h"
5#include "util/containers/GArray.h"
6#include "util/containers/DArray.h"
7#include <string>
8
9/*
10* PSCF - Polymer Self-Consistent Field Theory
11*
12* Copyright 2016 - 2022, The Regents of the University of Minnesota
13* Distributed under the terms of the GNU General Public License.
14*/
15
16namespace Pscf {
17
18 using namespace Util;
19
41 {
42
43 public:
44
49
54
64
81 virtual
82 void setParameter(std::string name, DArray<int> ids,
83 double value, bool& success)
84 { success = false; }
85
101 virtual
102 double getParameter(std::string name, DArray<int> ids, bool& success)
103 const
104 {
105 success = false;
106 return 0.0;
107 }
108
122 void setParameter(std::string name, DArray<int> ids, double value);
123
136 double getParameter(std::string name, DArray<int> ids) const;
137
138 };
139
140} // namespace Pscf
141#endif
Base class allowing subclasses to define sweepable parameters.
virtual GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to the Sweep object.
virtual void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
virtual double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.