1#ifndef RPG_SWEEP_PARAMETER_H
2#define RPG_SWEEP_PARAMETER_H
13#include <pscf/sweep/ParameterType.h>
18 template <
int D>
class System;
131 { systemPtr_ = &system; }
139 { parameterTypesPtr_ = &array; }
153 {
return parameterTypeId_; }
159 {
return (parameterTypeId_ != -1); }
171 void update(
double newVal);
176 std::string
type()
const;
225 template <
class Archive>
226 void serialize(Archive ar,
const unsigned int version);
231 enum ParamType {
Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
232 Mu_Polymer, Mu_Solvent,
Solvent, Cell_Param,
251 System<D>* systemPtr_;
257 int parameterTypeId_;
264 void readParamType(std::istream& in);
276 void set_(
double newVal);
293#include "SweepParameter.tpp"
Block within a branched polymer.
Solver and descriptor for a solvent species.
Class for storing data about an individual sweep parameter.
void setSystem(System< D > &system)
Set the system associated with this object.
double current()
Return the current system parameter value.
void getInitial()
Store the pre-sweep value of the corresponding parameter.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
int id(int i) const
Get a id for a sub-object or element to which this is applied.
void setParameterTypesArray(GArray< ParameterType > &array)
Set the pointer to the array of specialized sweep parameter types.
double change() const
Return the total change planned for this parameter during sweep.
int parameterTypeId() const
Get the array index for the specialized sweep parameter.
SweepParameter()
Default constructor.
void update(double newVal)
Update the corresponding parameter value in the system.
double initial() const
Return the initial system parameter value.
std::string type() const
Return a string representation of the parameter type.
bool isSpecialized() const
Is this SweepParameter a specialized parameter type?
ParameterType & parameterType() const
Get the ParameterType object for a specialized sweep parameter.
Main class for calculations that represent one system.
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Periodic fields and crystallography.
PSCF package top-level namespace.
Declaration of a specialized sweep parameter type.