1#ifndef RPC_SWEEP_PARAMETER_H
2#define RPC_SWEEP_PARAMETER_H
13#include <pscf/sweep/ParameterType.h>
18 template <
int D>
class System;
130 { systemPtr_ = &system; }
138 { parameterTypesPtr_ = &array; }
152 {
return parameterTypeId_; }
158 {
return (parameterTypeId_ != -1); }
173 void update(
double newVal);
178 std::string
type()
const;
239 template <
class Archive>
240 void serialize(Archive ar,
const unsigned int version);
245 enum ParamType {
Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
246 Mu_Polymer, Mu_Solvent,
Solvent, Cell_Param,
265 System<D>* systemPtr_;
271 int parameterTypeId_;
278 void readParamType(std::istream& in);
290 void set_(
double newVal);
312 SweepParameter<D>& param);
322 SweepParameter<D>
const & param);
326#include "SweepParameter.tpp"
Block within a branched polymer.
Solver and descriptor for a solvent species.
Class for storing data about an individual sweep parameter.
bool isSpecialized() const
Is this SweepParameter a specialized parameter type?
double current()
Get the current system parameter value.
void update(double newVal)
Update the corresponding parameter value in the System.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
void setParameterTypesArray(GArray< ParameterType > &array)
Set the pointer to the array of specialized sweep parameter types.
void setSystem(System< D > &system)
Set the system associated with this object.
void getInitial()
Get and store initial value of this parameter.
std::string type() const
Return a string representation of the parameter type.
double change() const
Get the total change planned for this parameter during sweep.
int nId() const
Number of indices associated with this type of parameter.
SweepParameter()
Default constructor.
int parameterTypeId() const
Get the array index for the specialized sweep parameter.
double initial() const
Get the initial system parameter value.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
ParameterType & parameterType() const
Get the ParameterType object for a specialized sweep parameter.
int id(int i) const
Get id for a sub-object or element to which this is applied.
Main class for SCFT or PS-FTS simulation of one system.
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
PSCF package top-level namespace.
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Declaration of a specialized sweep parameter type.