This is used to create PLMD::Action objects that are computed by calculating the same function multiple times.
More...
#include <ActionWithVessel.h>
Public Types | |
typedef std::vector< Action * > | Dependencies |
Public Member Functions | |
ActionWithVessel (const ActionOptions &ao) | |
~ActionWithVessel () | |
virtual void | activate () |
Set action to active. More... | |
void | addDependency (Action *) |
Specify that this Action depends on another one. More... | |
virtual void | apply ()=0 |
Apply an Action. More... | |
virtual void | applyBridgeForces (const std::vector< double > &bb) |
Apply forces from bridge vessel - this is rarely used - currently only in ActionVolume. More... | |
virtual void | beforeUpdate () |
Before Update. More... | |
StoreDataVessel * | buildDataStashes (ActionWithVessel *actionThatUses) |
Ensure that data required in other vessels is stored. More... | |
virtual void | calculate ()=0 |
Calculate an Action. More... | |
void | calculateFromPDB (const PDB &) |
Calculate the action given a pdb file as input. More... | |
virtual void | calculateNumericalDerivatives (ActionWithValue *a=NULL) |
Perform calculation using numerical derivatives N.B. More... | |
virtual bool | checkNeedsGradients () const |
Check if the action needs gradient. More... | |
virtual bool | checkNumericalDerivatives () const |
Check if numerical derivatives should be performed. More... | |
void | checkRead () |
Check if Action was properly read. More... | |
bool | checkUpdate () const |
Check if action should be updated. More... | |
std::string | cite (const std::string &s) |
Cite a paper see PlumedMain::cite. More... | |
void | clearDependencies () |
Clear the dependence list for this Action. More... | |
virtual void | clearOptions () |
virtual void | deactivate () |
Set action to inactive. More... | |
bool | derivativesAreRequired () const |
Are derivatives required for this quantity. More... | |
virtual void | doJobsRequiredBeforeTaskList () |
Do any jobs that are required before the task list is undertaken. More... | |
void | error (const std::string &msg) const |
Crash calculation and print documentation. More... | |
void | exit (int c=0) |
Exit with error code c. More... | |
int | fclose (FILE *fp) |
Closes a file opened with Action::fclose(). More... | |
void | fflush () |
Tell to the Action to flush open files. More... | |
virtual void | finishComputations (const std::vector< double > &buffer) |
Finish running all the calculations. More... | |
FILE * | fopen (const char *path, const char *mode) |
Opens a file. More... | |
unsigned | getActiveTask (const unsigned &ii) const |
Get the ith of the currently active tasks. More... | |
bool | getCPT () const |
Return true if we are doing at a checkpoint step. More... | |
unsigned | getCurrentNumberOfActiveTasks () const |
Get the number of tasks that are currently active. More... | |
const Dependencies & | getDependencies () const |
Return dependencies. More... | |
virtual std::string | getDocumentation () const |
bool | getExchangeStep () const |
Check if we are on an exchange step. More... | |
unsigned | getFullNumberOfTasks () const |
Get the full size of the taskList dynamic list. More... | |
std::string | getKeyword (const std::string &key) |
Just read one of the keywords and return the whole thing as a string. More... | |
const std::string & | getLabel () const |
Returns the label. More... | |
const std::string & | getName () const |
Returns the name. More... | |
virtual unsigned | getNumberOfDerivatives ()=0 |
Get the number of derivatives for final calculated quantity. More... | |
virtual unsigned | getNumberOfQuantities () const |
Get the number of quantities that are calculated during each task. More... | |
unsigned | getNumberOfVessels () const |
Get the number of vessels. More... | |
Vessel * | getPntrToVessel (const unsigned &i) |
Get a pointer to the ith vessel. More... | |
unsigned | getPositionInCurrentTaskList (const unsigned &myind) const |
Return the position in the current task list. More... | |
unsigned | getPositionInFullTaskList (const unsigned &ii) const |
Get the position of the ith active task in the full list. More... | |
bool | getRestart () const |
Return true if we are doing a restart. More... | |
long int | getStep () const |
Return the present timestep. More... | |
unsigned | getTaskCode (const unsigned &ii) const |
Get the code for the ii th task in the list. More... | |
double | getTime () const |
Return the present time. More... | |
double | getTimeStep () const |
Return the timestep. More... | |
Vessel * | getVesselWithName (const std::string &mynam) |
These are overwritten in MultiColvarFunction. More... | |
bool | isActive () const |
Check if action is active. More... | |
bool | isOptionOn (const std::string &s) const |
Check if an option is on. More... | |
virtual bool | isPeriodic ()=0 |
Are the base quantities periodic. More... | |
void | lockContributors () |
virtual void | lockRequests () |
virtual void | normalizeVector (std::vector< double > &vals) const |
These normalizes vectors and is used in StoreDataVessel. More... | |
virtual void | normalizeVectorDerivatives (MultiValue &myvals) const |
template<class T > | |
void | parse (const std::string &key, T &t) |
Parse one keyword as generic type. More... | |
void | parseFlag (const std::string &key, bool &t) |
Parse one keyword as boolean flag. More... | |
template<class T > | |
bool | parseNumbered (const std::string &key, const int no, T &t) |
Parse one numbered keyword as generic type. More... | |
template<class T > | |
bool | parseNumberedVector (const std::string &key, const int no, std::vector< T > &t) |
Parse a vector with a number. More... | |
template<class T > | |
void | parseVector (const std::string &key, std::vector< T > &t) |
Parse one keyword as std::vector. More... | |
virtual void | performTask (const unsigned &, const unsigned &, MultiValue &) const =0 |
Calculate one of the functions in the distribution. More... | |
virtual void | prepare () |
Prepare an Action for calculation This can be used by Action if they need some special preparation before calculation. More... | |
virtual void | readAtomsFromPDB (const PDB &) |
This is overwritten in ActionAtomistic so that we can read the atoms from the pdb input file rather than taking them from the MD code. More... | |
virtual void | retrieveDomain (std::string &min, std::string &max) |
What are the domains of the base quantities. More... | |
virtual void | runFinalJobs () |
RunFinalJobs This method is called once at the very end of the calculation. More... | |
virtual void | setOption (const std::string &s) |
bool | taskIsCurrentlyActive (const unsigned &index) const |
Check whether or not a particular task is currently active. More... | |
virtual bool | threadSafe () const |
Is this action thread safe. More... | |
virtual void | transformBridgedDerivatives (const unsigned ¤t, MultiValue &invals, MultiValue &outvals) const |
Do the task if we have a bridge. More... | |
virtual void | unlockRequests () |
virtual void | update () |
Update. More... | |
void | warning (const std::string &msg) |
Issue a warning. More... | |
bool | weightWithDerivatives () const |
Does the weight have derivatives. More... | |
Static Public Member Functions | |
static void | registerKeywords (Keywords &keys) |
Public Attributes | |
Communicator & | comm |
std::set< FILE * > | files |
const Keywords & | keywords |
Log & | log |
Reference to the log stream. More... | |
Communicator & | multi_sim_comm |
PlumedMain & | plumed |
Reference to main plumed object. More... | |
Protected Member Functions | |
BridgeVessel * | addBridgingVessel (ActionWithVessel *tome) |
Add a bridging vessel to the list of vessels. More... | |
void | addTaskToList (const unsigned &taskCode) |
Add a task to the full list. More... | |
void | addVessel (const std::string &name, const std::string &input, const int numlab=0) |
Add a vessel to the list of vessels. More... | |
void | addVessel (std::unique_ptr< Vessel > vv) |
void | calculateAllVessels (const unsigned &taskCode, MultiValue &myvals, MultiValue &bvals, std::vector< double > &buffer, std::vector< unsigned > &der_list) |
This loops over all the vessels calculating them and also sets all the element derivatives equal to zero. More... | |
void | deactivateAllTasks () |
Deactivate all the tasks in the task list. More... | |
bool | getForcesFromVessels (std::vector< double > &forcesToApply) |
Retrieve the forces from all the vessels (used in apply) More... | |
double | getNLTolerance () const |
Return the value for the neighbor list tolerance. More... | |
unsigned | getSizeOfBuffer (unsigned &bufsize) |
Get the size of the buffer. More... | |
double | getTolerance () const |
Return the value of the tolerance. More... | |
void | needsDerivatives () |
Turn on the derivatives in the vessel. More... | |
void | readVesselKeywords () |
Complete the setup of this object (this routine must be called after construction of ActionWithValue) More... | |
void | resizeFunctions () |
Resize all the functions when the number of derivatives change. More... | |
void | runAllTasks () |
Calculate the values of all the vessels. More... | |
bool | serialCalculation () const |
Is the calculation being done in serial. More... | |
void | setLowMemOption (const bool &) |
Set that we are using low memory. More... | |
bool | usingLowMem () const |
Are we using low memory. More... | |
Protected Attributes | |
unsigned | bridgeVariable |
This is used for numerical derivatives of bridge variables. More... | |
bool | contributorsAreUnlocked |
The terms in the series are locked. More... | |
bool | dertime |
This is also used to minimise computational expense in complex functions. More... | |
StoreDataVessel * | mydata |
A pointer to the object that stores data. More... | |
std::vector< unsigned > | taskFlags |
This list is used to update the neighbor list. More... | |
bool | weightHasDerivatives |
Does the weight have derivatives. More... | |
Private Attributes | |
bool | actionIsBridged |
This tells plumed that this is used in a bridge. More... | |
std::vector< double > | buffer |
The buffer that we use (we keep a copy here to avoid resizing) More... | |
std::vector< unsigned > | der_list |
The list of atoms involved in derivatives (we keep a copy here to avoid resizing) More... | |
bool | dertime_can_be_off |
These are used to minmise computational expense in complex functions. More... | |
std::vector< unsigned > | fullTaskList |
Ths full list of tasks we have to perform. More... | |
std::vector< std::unique_ptr< Vessel > > | functions |
Pointers to the functions we are using on each value. More... | |
std::vector< unsigned > | indexOfTaskInFullList |
The indices of the tasks in the full list of tasks. More... | |
bool | lowmem |
Lower memory requirements. More... | |
unsigned | maxderivatives |
The maximum number of derivatives we can use before we need to invoke lowmem. More... | |
unsigned | nactive_tasks |
The current number of active tasks. More... | |
double | nl_tolerance |
Tolerance for quantities being put in neighbor lists. More... | |
bool | noderiv |
Are we skipping the calculation of the derivatives. More... | |
std::vector< unsigned > | partialTaskList |
The list of currently active tasks. More... | |
bool | serial |
Do all calculations in serial. More... | |
Stopwatch & | stopwatch =*stopwatch_fwd |
The stopwatch that times the different parts of the calculation. More... | |
ForwardDecl< Stopwatch > | stopwatch_fwd |
bool | timers |
Do we want to output information on the timings of different parts of the calculation. More... | |
std::vector< double > | tmpforces |
Tempory storage for forces. More... | |
double | tolerance |
The tolerance on the accumulators. More... | |
Friends | |
class | ActionWithInputVessel |
class | BridgeVessel |
class | FunctionVessel |
class | OrderingVessel |
class | ShortcutVessel |
class | StoreDataVessel |
class | Vessel |
This is used to create PLMD::Action objects that are computed by calculating the same function multiple times.
This is used in PLMD::MultiColvar.
|
inherited |
|
explicit |
PLMD::vesselbase::ActionWithVessel::~ActionWithVessel | ( | ) |
|
virtualinherited |
Set action to active.
|
protected |
Add a bridging vessel to the list of vessels.
|
inherited |
Specify that this Action depends on another one.
|
protected |
Add a task to the full list.
|
protected |
Add a vessel to the list of vessels.
|
protected |
|
pure virtualinherited |
Apply an Action.
This method is called one time per step. The set of all Actions is applied in backward order.
Implemented in PLMD::analysis::Histogram, PLMD::isdb::MetainferenceBase, PLMD::generic::FitToTemplate, PLMD::mapping::PCAVars, PLMD::ves::Optimizer, PLMD::multicolvar::MultiColvarBase, PLMD::ves::BasisFunctions, PLMD::ves::TargetDistribution, PLMD::generic::Plumed, PLMD::generic::WrapAround, PLMD::generic::Include, PLMD::generic::DumpAtoms, PLMD::generic::Group, PLMD::generic::EffectiveEnergyDrift, PLMD::generic::WholeMolecules, PLMD::generic::ResetCell, PLMD::generic::DumpMassCharge, PLMD::multicolvar::MultiColvarDensity, PLMD::ves::OutputFesBias, PLMD::adjmat::Sprint, PLMD::analysis::Average, PLMD::generic::Read, PLMD::mapping::Mapping, PLMD::analysis::AnalysisBase, PLMD::multicolvar::DistanceFromContour, PLMD::generic::UpdateIf, PLMD::generic::Print, PLMD::ves::OutputBasisFunctions, PLMD::ves::OutputTargetDistribution, PLMD::adjmat::OutputCluster, PLMD::generic::RandomExchanges, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::multicolvar::DumpMultiColvar, PLMD::multicolvar::BridgedMultiColvarFunction, PLMD::analysis::Committor, PLMD::generic::Flush, PLMD::isdb::Selector, PLMD::generic::DumpDerivatives, PLMD::generic::DumpForces, PLMD::generic::EndPlumed, PLMD::manyrestraints::ManyRestraintsBase, PLMD::generic::DumpProjections, PLMD::generic::Debug, PLMD::Colvar, PLMD::adjmat::DumpGraph, PLMD::adjmat::ClusteringBase, PLMD::bias::Bias, PLMD::generic::Time, PLMD::function::Function, PLMD::bias::ReweightBase, PLMD::ActionShortcut, PLMD::ActionWithVirtualAtom, PLMD::gridtools::ActionWithInputGrid, PLMD::gridtools::ActionWithIntegral, PLMD::ActionAnyorder, PLMD::ActionSetup, and PLMD::gridtools::GridPrintingBase.
|
inlinevirtual |
Apply forces from bridge vessel - this is rarely used - currently only in ActionVolume.
Reimplemented in PLMD::multicolvar::BridgedMultiColvarFunction, and PLMD::manyrestraints::ManyRestraintsBase.
|
inlinevirtualinherited |
Before Update.
This is a special method that is called just before the update() method. It can be used by actions that want to do something irrespectively of the fact that update() is active or not. In other words, this is always called, even when action is not active.
Reimplemented in PLMD::generic::UpdateIf.
StoreDataVessel * PLMD::vesselbase::ActionWithVessel::buildDataStashes | ( | ActionWithVessel * | actionThatUses | ) |
Ensure that data required in other vessels is stored.
|
pure virtualinherited |
Calculate an Action.
This method is called one or more times per step. The set of all Actions is calculated in forward order.
Implemented in PLMD::isdb::CS2Backbone, PLMD::bias::MetaD, PLMD::logmfd::LogMFD, PLMD::ves::VesLinearExpansion, PLMD::bias::PBMetaD, PLMD::isdb::Metainference, PLMD::isdb::EMMI, PLMD::eds::EDS, PLMD::function::FuncPathMSD, PLMD::isdb::RDC, PLMD::piv::PIV, PLMD::function::FuncSumHills, PLMD::generic::FitToTemplate, PLMD::mapping::PCAVars, PLMD::ves::Optimizer, PLMD::ves::BasisFunctions, PLMD::ves::TargetDistribution, PLMD::function::Custom, PLMD::ves::VesDeltaF, PLMD::multicolvar::MultiColvarBase, PLMD::bias::MaxEnt, PLMD::generic::Plumed, PLMD::generic::WrapAround, PLMD::isdb::Rescale, PLMD::generic::Include, PLMD::generic::DumpAtoms, PLMD::generic::Group, PLMD::isdb::SAXS, PLMD::colvar::Dimer, PLMD::maze::OptimizerBias, PLMD::vatom::Center, PLMD::bias::ExtendedLagrangian, PLMD::bias::External, PLMD::colvar::DRMSD, PLMD::colvar::ContactMap, PLMD::colvar::Distance, PLMD::generic::EffectiveEnergyDrift, PLMD::bias::MovingRestraint, PLMD::colvar::ERMSD, PLMD::generic::WholeMolecules, PLMD::function::Target, PLMD::generic::ResetCell, PLMD::generic::DumpMassCharge, PLMD::mapping::AdaptivePath, PLMD::function::annfunc::ANN, PLMD::ves::OutputFesBias, PLMD::isdb::JCoupling, PLMD::adjmat::Sprint, PLMD::colvar::Torsion, PLMD::colvar::EEFSolv, PLMD::generic::Read, PLMD::analysis::Average, PLMD::analysis::AnalysisBase, PLMD::isdb::Caliber, PLMD::multicolvar::CenterOfMultiColvar, PLMD::vatom::FixedAtom, PLMD::colvar::Gyration, PLMD::bias::ABMD, PLMD::colvar::Angle, PLMD::colvar::PathMSDBase, PLMD::isdb::FretEfficiency, PLMD::generic::UpdateIf, PLMD::maze::Optimizer, PLMD::multicolvar::DistanceFromContour, PLMD::isdb::PRE, PLMD::ves::OutputBasisFunctions, PLMD::function::Combine, PLMD::generic::Print, PLMD::colvar::Position, PLMD::ves::OutputTargetDistribution, PLMD::function::LocalEnsemble, PLMD::adjmat::OutputCluster, PLMD::bias::BiasValue, PLMD::isdb::NOE, PLMD::colvar::Puckering, PLMD::generic::RandomExchanges, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::multicolvar::DumpMultiColvar, PLMD::adjmat::ClusterDistribution, PLMD::function::Piecewise, PLMD::bias::LWalls, PLMD::isdb::Select, PLMD::maze::Loss, PLMD::bias::UWalls, PLMD::adjmat::ClusterDiameter, PLMD::analysis::Committor, PLMD::adjmat::ClusterSize, PLMD::colvar::Dipole, PLMD::colvar::Energy, PLMD::bias::Restraint, PLMD::colvar::Constant, PLMD::generic::Flush, PLMD::isdb::Selector, PLMD::adjmat::ClusterProperties, PLMD::function::Ensemble, PLMD::function::Stats, PLMD::multicolvar::BridgedMultiColvarFunction, PLMD::function::Sort, PLMD::generic::DumpDerivatives, PLMD::generic::DumpForces, PLMD::generic::EndPlumed, PLMD::colvar::ExtraCV, PLMD::generic::Debug, PLMD::colvar::Template, PLMD::generic::DumpProjections, PLMD::manyrestraints::ManyRestraintsBase, PLMD::vatom::Ghost, PLMD::colvar::Cell, PLMD::adjmat::DumpGraph, PLMD::colvar::ColvarFake, PLMD::colvar::Volume, PLMD::generic::Time, PLMD::gridtools::ActionWithGrid, PLMD::adjmat::ClusteringBase, PLMD::colvar::MultiRMSD, PLMD::colvar::PCARMSD, PLMD::colvar::RMSD, PLMD::ActionShortcut, PLMD::colvar::CoordinationBase, PLMD::bias::ReweightBase, PLMD::ActionAnyorder, PLMD::ActionSetup, PLMD::gridtools::GridPrintingBase, and PLMD::mapping::PathBase.
|
protected |
This loops over all the vessels calculating them and also sets all the element derivatives equal to zero.
|
inherited |
Calculate the action given a pdb file as input.
This is used to initialize things like distance from a point in CV map space given a pdb as an input file
|
virtualinherited |
Perform calculation using numerical derivatives N.B.
only pass an ActionWithValue to this routine if you know exactly what you are doing.
Reimplemented in PLMD::isdb::MetainferenceBase, PLMD::mapping::PCAVars, PLMD::ActionAtomistic, PLMD::multicolvar::MultiColvarBase, PLMD::analysis::AnalysisBase, PLMD::vesselbase::ActionWithAveraging, PLMD::mapping::Mapping, PLMD::multicolvar::DumpMultiColvar, PLMD::ActionWithArguments, PLMD::multicolvar::BridgedMultiColvarFunction, and PLMD::vesselbase::ActionWithInputVessel.
|
inlinevirtualinherited |
Check if the action needs gradient.
Reimplemented in PLMD::bias::MetaD, PLMD::bias::PBMetaD, and PLMD::generic::DumpProjections.
|
inlinevirtualinherited |
Check if numerical derivatives should be performed.
Reimplemented in PLMD::ActionWithValue.
|
inherited |
Check if Action was properly read.
This checks if Action::line is empty. It must be called after a final Action has been initialized
|
inherited |
Check if action should be updated.
|
inherited |
Cite a paper see PlumedMain::cite.
|
inherited |
Clear the dependence list for this Action.
|
virtualinherited |
|
inlinevirtualinherited |
Set action to inactive.
|
protected |
Deactivate all the tasks in the task list.
|
inline |
Are derivatives required for this quantity.
|
virtual |
Do any jobs that are required before the task list is undertaken.
Reimplemented in PLMD::manyrestraints::ManyRestraintsBase, PLMD::multicolvar::VolumeGradientBase, and PLMD::multicolvar::MultiColvarFilter.
|
inherited |
Crash calculation and print documentation.
|
inherited |
Exit with error code c.
|
inherited |
Closes a file opened with Action::fclose().
|
inherited |
Tell to the Action to flush open files.
|
virtual |
Finish running all the calculations.
|
inherited |
Opens a file.
This is similar to plain fopen, but with some extra functionality.
|
inline |
Get the ith of the currently active tasks.
|
inherited |
Return true if we are doing at a checkpoint step.
|
inline |
Get the number of tasks that are currently active.
|
inlineinherited |
Return dependencies.
|
virtualinherited |
|
inherited |
Check if we are on an exchange step.
|
protected |
Retrieve the forces from all the vessels (used in apply)
|
inline |
Get the full size of the taskList dynamic list.
|
inherited |
Just read one of the keywords and return the whole thing as a string.
|
inlineinherited |
Returns the label.
|
inlineinherited |
Returns the name.
|
inlineprotected |
Return the value for the neighbor list tolerance.
|
pure virtual |
Get the number of derivatives for final calculated quantity.
Implemented in PLMD::analysis::Histogram, PLMD::multicolvar::MultiColvarBase, PLMD::analysis::AnalysisBase, PLMD::mapping::Mapping, PLMD::vesselbase::ActionWithAveraging, PLMD::adjmat::ClusterWithSurface, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::multicolvar::BridgedMultiColvarFunction, PLMD::adjmat::ActionWithInputMatrix, PLMD::manyrestraints::ManyRestraintsBase, PLMD::gridtools::ContourFindingBase, and PLMD::gridtools::ActionWithIntegral.
|
inlinevirtual |
Get the number of quantities that are calculated during each task.
Reimplemented in PLMD::analysis::Histogram, PLMD::pamm::PAMM, PLMD::gridtools::FindSphericalContour, PLMD::gridtools::FindContour, PLMD::multicolvar::MultiColvarDensity, PLMD::gridtools::FindContourSurface, PLMD::multicolvar::LocalAverage, PLMD::multicolvar::DistanceFromContour, PLMD::adjmat::ClusterWithSurface, PLMD::vesselbase::ActionWithAveraging, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::gridtools::ConvertToFES, PLMD::adjmat::TopologyMatrix, PLMD::crystallization::VectorMultiColvar, PLMD::adjmat::ActionWithInputMatrix, PLMD::gridtools::InterpolateGrid, PLMD::multicolvar::ActionVolume, PLMD::adjmat::ClusterAnalysisBase, PLMD::multicolvar::MultiColvarFilter, and PLMD::crystallization::Gradient.
|
inline |
Get the number of vessels.
|
inline |
Get a pointer to the ith vessel.
|
inline |
Return the position in the current task list.
|
inline |
Get the position of the ith active task in the full list.
|
inlineinherited |
Return true if we are doing a restart.
|
protected |
Get the size of the buffer.
|
inherited |
Return the present timestep.
|
inline |
Get the code for the ii th task in the list.
|
inherited |
Return the present time.
|
inherited |
Return the timestep.
|
inlineprotected |
Return the value of the tolerance.
Vessel * PLMD::vesselbase::ActionWithVessel::getVesselWithName | ( | const std::string & | mynam | ) |
These are overwritten in MultiColvarFunction.
Return a particular named vessel
|
inlineinherited |
Check if action is active.
|
inlineinherited |
Check if an option is on.
|
pure virtual |
Are the base quantities periodic.
Implemented in PLMD::analysis::Histogram, PLMD::multicolvar::XDistances, PLMD::multicolvar::XYTorsion, PLMD::multicolvar::Distances, PLMD::pamm::PAMM, PLMD::gridtools::FindContour, PLMD::multicolvar::XYDistances, PLMD::multicolvar::AlphaBeta, PLMD::multicolvar::MultiColvarDensity, PLMD::analysis::Average, PLMD::multicolvar::Angles, PLMD::multicolvar::LocalAverage, PLMD::multicolvar::XAngles, PLMD::multicolvar::CoordinationNumbers, PLMD::multicolvar::DistanceFromContour, PLMD::analysis::AnalysisBase, PLMD::crystallization::InterMolecularTorsions, PLMD::multicolvar::DihedralCorrelation, PLMD::gridtools::FourierTransform, PLMD::mapping::Mapping, PLMD::multicolvar::NumberOfLinks, PLMD::multicolvar::Torsions, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::adjmat::AdjacencyMatrixBase, PLMD::gridtools::ConvertToFES, PLMD::multicolvar::Bridge, PLMD::multicolvar::InPlaneDistances, PLMD::multicolvar::BridgedMultiColvarFunction, PLMD::adjmat::ActionWithInputMatrix, PLMD::multicolvar::Density, PLMD::gridtools::InterpolateGrid, PLMD::pamm::HBPammHydrogens, PLMD::crystallization::VectorMultiColvar, PLMD::multicolvar::MultiColvarCombine, PLMD::adjmat::ClusterAnalysisBase, PLMD::multicolvar::MultiColvarProduct, PLMD::gridtools::ContourFindingBase, PLMD::crystallization::CubicHarmonicBase, PLMD::manyrestraints::ManyRestraintsBase, PLMD::crystallization::OrientationSphere, and PLMD::gridtools::ActionWithIntegral.
void PLMD::vesselbase::ActionWithVessel::lockContributors | ( | ) |
|
inlinevirtualinherited |
|
protected |
Turn on the derivatives in the vessel.
|
inlinevirtual |
These normalizes vectors and is used in StoreDataVessel.
Reimplemented in PLMD::multicolvar::LocalAverage, PLMD::multicolvar::BridgedMultiColvarFunction, PLMD::crystallization::VectorMultiColvar, and PLMD::crystallization::MoleculeOrientation.
|
inlinevirtual |
|
inherited |
Parse one keyword as generic type.
|
inherited |
Parse one keyword as boolean flag.
|
inherited |
Parse one numbered keyword as generic type.
|
inherited |
Parse a vector with a number.
|
inherited |
Parse one keyword as std::vector.
|
pure virtual |
Calculate one of the functions in the distribution.
Implemented in PLMD::multicolvar::MultiColvarBase, PLMD::mapping::AdaptivePath, PLMD::analysis::Average, PLMD::vesselbase::ActionWithAveraging, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::adjmat::ClusterDistribution, PLMD::adjmat::ClusterDiameter, PLMD::adjmat::ClusterSize, PLMD::analysis::ReadDissimilarityMatrix, PLMD::adjmat::ClusterProperties, PLMD::multicolvar::BridgedMultiColvarFunction, PLMD::dimred::ProjectNonLandmarkPoints, PLMD::dimred::DimensionalityReductionBase, PLMD::analysis::LandmarkSelectionBase, PLMD::manyrestraints::ManyRestraintsBase, PLMD::analysis::ReadAnalysisFrames, PLMD::analysis::EuclideanDissimilarityMatrix, PLMD::analysis::OutputColvarFile, PLMD::dimred::OutputPCAProjection, PLMD::analysis::OutputPDBFile, PLMD::analysis::PrintDissimilarityMatrix, and PLMD::mapping::PathBase.
|
virtualinherited |
Prepare an Action for calculation This can be used by Action if they need some special preparation before calculation.
Typical case is for collective variables which would like to change their list of requested atoms. By default (if not overridden) does nothing.
Reimplemented in PLMD::isdb::EMMI, PLMD::function::FuncPathMSD, PLMD::generic::Plumed, PLMD::multicolvar::MultiColvarBase, PLMD::generic::DumpMassCharge, PLMD::generic::Read, PLMD::maze::Optimizer, PLMD::generic::UpdateIf, PLMD::generic::Print, PLMD::colvar::Energy, PLMD::SetupMolInfo, PLMD::gridtools::ConvertToFES, PLMD::colvar::ExtraCV, and PLMD::colvar::CoordinationBase.
|
inlinevirtualinherited |
This is overwritten in ActionAtomistic so that we can read the atoms from the pdb input file rather than taking them from the MD code.
Reimplemented in PLMD::ActionAtomistic.
|
protected |
Complete the setup of this object (this routine must be called after construction of ActionWithValue)
|
static |
|
protected |
Resize all the functions when the number of derivatives change.
|
virtual |
What are the domains of the base quantities.
Reimplemented in PLMD::multicolvar::XYTorsion, PLMD::crystallization::InterMolecularTorsions, and PLMD::multicolvar::Torsions.
|
protected |
Calculate the values of all the vessels.
|
inlinevirtualinherited |
RunFinalJobs This method is called once at the very end of the calculation.
The set of all Actions in run for the final time in forward order.
Reimplemented in PLMD::vesselbase::ActionWithAveraging, PLMD::analysis::AnalysisBase, PLMD::gridtools::ConvertToFES, PLMD::analysis::ReadDissimilarityMatrix, and PLMD::gridtools::GridPrintingBase.
|
inlineprotected |
Is the calculation being done in serial.
|
inlineprotected |
Set that we are using low memory.
|
virtualinherited |
bool PLMD::vesselbase::ActionWithVessel::taskIsCurrentlyActive | ( | const unsigned & | index | ) | const |
Check whether or not a particular task is currently active.
|
inlinevirtual |
Is this action thread safe.
Reimplemented in PLMD::analysis::Histogram, and PLMD::multicolvar::MultiColvarBase.
|
virtual |
Do the task if we have a bridge.
Reimplemented in PLMD::multicolvar::BridgedMultiColvarFunction, and PLMD::manyrestraints::ManyRestraintsBase.
|
inlinevirtualinherited |
|
inlinevirtualinherited |
Update.
This method is called one time per step. The set of all Actions is updated in forward order.
Reimplemented in PLMD::isdb::CS2Backbone, PLMD::bias::MetaD, PLMD::logmfd::LogMFD, PLMD::ves::VesLinearExpansion, PLMD::bias::PBMetaD, PLMD::isdb::Metainference, PLMD::eds::EDS, PLMD::isdb::RDC, PLMD::ves::Optimizer, PLMD::ves::TargetDistribution, PLMD::ves::VesDeltaF, PLMD::bias::MaxEnt, PLMD::generic::Plumed, PLMD::generic::DumpAtoms, PLMD::isdb::SAXS, PLMD::bias::ExtendedLagrangian, PLMD::multicolvar::VolumeTetrapore, PLMD::multicolvar::VolumeCavity, PLMD::generic::EffectiveEnergyDrift, PLMD::mapping::AdaptivePath, PLMD::generic::DumpMassCharge, PLMD::isdb::JCoupling, PLMD::ves::OutputFesBias, PLMD::generic::Read, PLMD::analysis::AnalysisBase, PLMD::generic::Print, PLMD::isdb::PRE, PLMD::vesselbase::ActionWithAveraging, PLMD::adjmat::OutputCluster, PLMD::isdb::NOE, PLMD::multicolvar::DumpMultiColvar, PLMD::generic::Flush, PLMD::generic::DumpDerivatives, PLMD::analysis::ReadDissimilarityMatrix, PLMD::generic::DumpForces, PLMD::generic::DumpProjections, PLMD::adjmat::DumpGraph, PLMD::analysis::ReadAnalysisFrames, and PLMD::gridtools::GridPrintingBase.
|
inlineprotected |
Are we using low memory.
|
inherited |
Issue a warning.
|
inline |
Does the weight have derivatives.
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
private |
This tells plumed that this is used in a bridge.
|
protected |
This is used for numerical derivatives of bridge variables.
|
private |
The buffer that we use (we keep a copy here to avoid resizing)
|
inherited |
|
protected |
The terms in the series are locked.
|
private |
The list of atoms involved in derivatives (we keep a copy here to avoid resizing)
|
protected |
This is also used to minimise computational expense in complex functions.
|
private |
These are used to minmise computational expense in complex functions.
|
inherited |
|
private |
Ths full list of tasks we have to perform.
|
private |
Pointers to the functions we are using on each value.
|
private |
The indices of the tasks in the full list of tasks.
|
inherited |
|
inherited |
Reference to the log stream.
|
private |
Lower memory requirements.
|
private |
The maximum number of derivatives we can use before we need to invoke lowmem.
|
inherited |
|
protected |
A pointer to the object that stores data.
|
private |
The current number of active tasks.
|
private |
Tolerance for quantities being put in neighbor lists.
|
private |
Are we skipping the calculation of the derivatives.
|
private |
The list of currently active tasks.
|
inherited |
Reference to main plumed object.
|
private |
Do all calculations in serial.
|
private |
The stopwatch that times the different parts of the calculation.
|
private |
|
protected |
This list is used to update the neighbor list.
|
private |
Do we want to output information on the timings of different parts of the calculation.
|
private |
Tempory storage for forces.
|
private |
The tolerance on the accumulators.
|
protected |
Does the weight have derivatives.
Hosted by GitHub
![]() |
![]() |