This is the abstract base class to use for implementing new methods for analyzing the trajectory, within it there is information as to how to go about implementing a new analysis method. More...
#include <Analysis.h>
Public Types | |
typedef std::vector< Action * > | Dependencies |
typedef std::set< FILE * > ::iterator | files_iterator |
Public Member Functions | |
Analysis (const ActionOptions &) | |
~Analysis () | |
void | prepare () |
Prepare an Action for calculation This can be used by Action if they need some special preparation before calculation. More... | |
void | calculate () |
Calculate an Action. More... | |
void | update () |
Update. More... | |
void | accumulate () |
virtual void | performAnalysis ()=0 |
void | apply () |
Apply an Action. More... | |
void | runFinalJobs () |
RunFinalJobs This method is called once at the very end of the calculation. More... | |
void | runAnalysis () |
void | lockRequests () |
void | unlockRequests () |
void | calculateNumericalDerivatives (ActionWithValue *a=NULL) |
N.B. More... | |
bool | isPeriodic () |
Are the base quantities periodic. More... | |
unsigned | getNumberOfDerivatives () |
Get the number of derivatives for final calculated quantity. More... | |
bool | onStep () const |
Check if the action is active on this step. More... | |
void | addDependency (Action *) |
Specify that this Action depends on another one. More... | |
void | clearDependencies () |
Clear the dependence list for this Action. More... | |
long int | getStep () const |
Return the present timestep. More... | |
double | getTime () const |
Return the present time. More... | |
double | getTimeStep () const |
Return the timestep. More... | |
template<class T > | |
void | parse (const std::string &key, T &t) |
Parse one keyword as generic type. 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 > | |
void | parseVector (const std::string &key, std::vector< T > &t) |
Parse one keyword as std::vector. More... | |
template<class T > | |
bool | parseNumberedVector (const std::string &key, const int no, std::vector< T > &t) |
Parse a vector with a number. More... | |
void | parseFlag (const std::string &key, bool &t) |
Parse one keyword as boolean flag. More... | |
void | error (const std::string &msg) const |
Crash calculation and print documentation. More... | |
void | warning (const std::string &msg) |
Issue a warning. More... | |
void | exit (int c=0) |
Exit with error code c. More... | |
void | checkRead () |
Check if Action was properly read. More... | |
void | fflush () |
Tell to the Action to flush open files. More... | |
virtual std::string | getDocumentation () const |
const std::string & | getLabel () const |
Returns the label. More... | |
const std::string & | getName () const |
Returns the name. More... | |
virtual void | activate () |
Set action to active. More... | |
virtual void | setOption (const std::string &s) |
virtual void | clearOptions () |
virtual void | deactivate () |
Set action to inactive. More... | |
bool | isActive () const |
Check if action is active. More... | |
bool | isOptionOn (const std::string &s) const |
Check if an option is on. More... | |
const Dependencies & | getDependencies () const |
Return dependencies. More... | |
virtual bool | checkNumericalDerivatives () const |
Check if numerical derivatives should be performed. More... | |
virtual bool | checkNeedsGradients () const |
Check if the action needs gradient. More... | |
FILE * | fopen (const char *path, const char *mode) |
Opens a file. More... | |
int | fclose (FILE *fp) |
Closes a file opened with Action::fclose(). More... | |
void | calculateFromPDB (const PDB &) |
Calculate the action given a pdb file as input. 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... | |
bool | getExchangeStep () const |
Check if we are on an exchange step. More... | |
std::string | cite (const std::string &s) |
Cite a paper see PlumedMain::cite. More... | |
void | requestAtoms (const std::vector< AtomNumber > &a) |
Request an array of atoms. More... | |
const Vector & | getPosition (int) const |
Get position of i-th atom (access by relative index) More... | |
const Vector & | getPosition (AtomNumber) const |
Get position of i-th atom (access by absolute AtomNumber). More... | |
Vector & | modifyPosition (AtomNumber) |
Get modifiable position of i-th atom (access by absolute AtomNumber). More... | |
unsigned | getTotAtoms () const |
Get total number of atoms, including virtual ones. More... | |
Vector & | modifyGlobalForce (AtomNumber) |
Get modifiable force of i-th atom (access by absolute AtomNumber). More... | |
Tensor & | modifyGlobalVirial () |
Get modifiable virial Should be used by action that need to modify the stored virial. More... | |
const Tensor & | getBox () const |
Get box shape. More... | |
const std::vector< Vector > & | getPositions () const |
Get the array of all positions. More... | |
const double & | getEnergy () const |
Get energy. More... | |
double | getMass (int i) const |
Get mass of i-th atom. More... | |
double | getCharge (int i) const |
Get charge of i-th atom. More... | |
std::vector< Vector > & | modifyForces () |
Get a reference to forces array. More... | |
Tensor & | modifyVirial () |
Get a reference to virial array. More... | |
double & | modifyForceOnEnergy () |
Get a reference to force on energy. More... | |
unsigned | getNumberOfAtoms () const |
Get number of available atoms. More... | |
Vector | pbcDistance (const Vector &, const Vector &) const |
Compute the pbc distance between two positions. More... | |
const std::vector< AtomNumber > & | getAbsoluteIndexes () const |
Get the vector of absolute indexes. More... | |
AtomNumber | getAbsoluteIndex (int i) const |
Get the absolute index of an atom. More... | |
void | parseAtomList (const std::string &key, std::vector< AtomNumber > &t) |
Parse a list of atoms without a numbered keyword. More... | |
void | parseAtomList (const std::string &key, const int num, std::vector< AtomNumber > &t) |
Parse an list of atom with a numbred keyword. More... | |
void | changeBox (const Tensor &newbox) |
Change the box shape. More... | |
const Pbc & | getPbc () const |
Get reference to Pbc. More... | |
void | setForcesOnAtoms (const std::vector< double > &forcesToApply, unsigned ind=0) |
Add the forces to the atoms. More... | |
void | doNotRetrieve () |
Skip atom retrieval - use with care. More... | |
void | doNotForce () |
Skip atom forces - use with care. More... | |
void | clearOutputForces () |
void | calculateAtomicNumericalDerivatives (ActionWithValue *a, const unsigned &startnum) |
Numerical derivative routine to use when using Actions that inherit from BOTH ActionWithArguments and ActionAtomistic. More... | |
void | retrieveAtoms () |
void | applyForces () |
const std::set< AtomNumber > & | getUnique () const |
void | readAtomsFromPDB (const PDB &pdb) |
Read in an input file containing atom positions and calculate the action for the atomic configuration therin. More... | |
double | getProjection (unsigned i, unsigned j) const |
Get the scalar product between the gradients of two variables. More... | |
double | getArgument (const unsigned n) const |
Returns the value of an argument. More... | |
Value * | getPntrToArgument (const unsigned n) |
Return a pointer to specific argument. More... | |
double | difference (int, double, double) const |
Takes the difference taking into account pbc for arg i. More... | |
double | bringBackInPbc (int i, double d1) const |
Takes one value and brings it back into the pbc of argument i. More... | |
void | parseArgumentList (const std::string &key, std::vector< Value * > &args) |
Parse a list of arguments. More... | |
void | requestArguments (const std::vector< Value * > &arg) |
Setup the dependencies. More... | |
void | addForcesOnArguments (const std::vector< double > &forces) |
Add forces to arguments (used in apply) More... | |
void | interpretArgumentList (const std::vector< std::string > &c, std::vector< Value * > &arg) |
Convert a list of argument names into a list of pointers to the values. More... | |
void | unlockContributors () |
void | lockContributors () |
virtual void | finishTaskListUpdate () |
virtual void | deactivate_task () |
Activate the jth colvar Deactivate the current task in future loops. More... | |
void | chainRuleForElementDerivatives (const unsigned &, const unsigned &, const double &, Vessel *) |
Merge the derivatives. More... | |
void | chainRuleForElementDerivatives (const unsigned &, const unsigned &, const unsigned &, const unsigned &, const double &, Vessel *) |
virtual void | mergeDerivatives (const unsigned &ider, const double &df) |
virtual void | clearDerivativesAfterTask (const unsigned &) |
bool | derivativesAreRequired () const |
Are derivatives required for this quantity. More... | |
virtual void | finishComputations () |
Finish running all the calculations. More... | |
virtual void | retrieveDomain (std::string &min, std::string &max) |
What are the domains of the base quantities. More... | |
virtual unsigned | getNumberOfQuantities () |
Get the number of quantities that are calculated during each task. More... | |
virtual void | getIndexList (const unsigned &ntotal, const unsigned &jstore, const unsigned &maxder, std::vector< unsigned > &indices) |
Get the list of indices that have derivatives. More... | |
void | activateTheseTasks (std::vector< bool > &addtionalTasks) |
Switch on additional tasks. More... | |
virtual void | doJobsRequiredBeforeTaskList () |
Do any jobs that are required before the task list is undertaken. More... | |
unsigned | getFullNumberOfTasks () const |
Get the full size of the taskList dynamic list. More... | |
virtual void | performTask ()=0 |
Get the index for a particular numbered task. More... | |
void | setElementDerivative (const unsigned &, const double &) |
Set the derivative of the jth element wrt to a numbered element. More... | |
void | addElementDerivative (const unsigned &, const double &) |
Add some derivative of the quantity in the sum wrt to a numbered element. More... | |
void | setElementValue (const unsigned &, const double &) |
Set the value of the element. More... | |
void | addElementValue (const unsigned &, const double &) |
Add to an element value. More... | |
double | getElementValue (const unsigned &ival) const |
Get the value of this element. More... | |
double | getElementDerivative (const unsigned &) const |
Retrieve the derivative of the quantity in the sum wrt to a numbered element. More... | |
virtual StoreDataVessel * | buildDataStashes () |
Ensure that data required in other vessels is stored. 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 | activateIndexes (const unsigned &, const unsigned &, const std::vector< unsigned > &) |
These are overwritten in MultiColvarFunction. More... | |
Vessel * | getVesselWithName (const std::string &mynam) |
Return a particular named vessel. More... | |
Static Public Member Functions | |
static void | registerKeywords (Keywords &keys) |
Public Attributes | |
PlumedMain & | plumed |
Reference to main plumed object. More... | |
Log & | log |
Reference to the log stream. More... | |
std::set< FILE * > | files |
Communicator & | comm |
Communicator & | multi_sim_comm |
const Keywords & | keywords |
Protected Member Functions | |
void | parseOutputFile (const std::string &key, std::string &filename) |
This is used to read in output file names for analysis methods. More... | |
std::string | getMetricName () const |
Get the name of the metric we are using to measure distances. More... | |
unsigned | getNumberOfArguments () const |
Return the number of arguments (this overwrites the one in ActionWithArguments) More... | |
unsigned | getNumberOfDataPoints () const |
Return the number of data points. More... | |
double | getWeight (const unsigned &idata) const |
Return the weight of the ith point. More... | |
void | getDataPoint (const unsigned &idata, std::vector< double > &point, double &weight) const |
Retrieve the ith point. More... | |
bool | getPeriodicityInformation (const unsigned &i, std::string &dmin, std::string &dmax) |
Returns true if argument i is periodic together with the domain. More... | |
double | getNormalization () const |
Return the normalization constant. More... | |
double | getTemp () const |
Return the set temperature (N.B. k_B T is what is returned by this function) More... | |
bool | usingMemory () const |
Are we analyzing each data block separately (if we are not this also returns the old normalization ) More... | |
void | finalizeWeights (const bool &ignore_weights) |
Convert the stored log weights to proper weights. More... | |
std::vector< Value * > | getArguments () |
Overwrite ActionWithArguments getArguments() so that we don't return the bias. More... | |
std::string | getOutputFormat () const |
Return the format to use for numbers in output files. More... | |
int | getStride () const |
void | expandArgKeywordInPDB (PDB &pdb) |
This changes the arg keyword in the pdb file. More... | |
void | setMaximumNumberOfDerivatives (const unsigned &) |
Set the maximum number of derivatives. 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 (Vessel *vv) |
BridgeVessel * | addBridgingVessel (ActionWithVessel *tome) |
Add a bridging vessel to the list of vessels. More... | |
void | readVesselKeywords () |
Complete the setup of this object (this routine must be called after construction of ActionWithValue) More... | |
void | needsDerivatives () |
Turn on the derivatives in the vessel. More... | |
double | getTolerance () const |
Return the value of the tolerance. More... | |
double | getNLTolerance () const |
Return the value for the neighbor list tolerance. More... | |
unsigned | getNumberOfVessels () const |
Get the number of vessels. More... | |
Vessel * | getPntrToVessel (const unsigned &i) |
Get a pointer to the ith vessel. More... | |
void | runAllTasks () |
Calculate the values of all the vessels. More... | |
void | resizeFunctions () |
Resize all the functions when the number of derivatives change. More... | |
bool | calculateAllVessels () |
This loops over all the vessels calculating them and also sets all the element derivatives equal to zero. More... | |
bool | getForcesFromVessels (std::vector< double > &forcesToApply) |
Retrieve the forces from all the vessels (used in apply) More... | |
void | accumulateDerivative (const unsigned &ider, const double &df) |
This is used to accumulate the derivatives when we merge using chainRuleForElementDerivatives. More... | |
void | clearAfterTask () |
Clear tempory data that is calculated for each task. More... | |
bool | serialCalculation () const |
Is the calculation being done in serial. More... | |
bool | usingLowMem () const |
Are we using low memory. More... | |
void | setLowMemOption (const bool &) |
Set that we are using low memory. More... | |
unsigned | getCurrentNumberOfActiveTasks () const |
Get the number of tasks that are currently active. More... | |
unsigned | getActiveTask (const unsigned &ii) const |
Get the ith of the currently active tasks. More... | |
unsigned | getPositionInFullTaskList (const unsigned &ii) const |
Get the position of the ith active task in the full list. More... | |
unsigned | getCurrentPositionInTaskList () const |
Get the current task's position in the task list. More... | |
unsigned | getCurrentTask () const |
Return the number that provides instructions for the current task. More... | |
void | deactivateAllTasks () |
Deactivate all the tasks in the task list. More... | |
void | deactivateTasksInRange (const unsigned &lower, const unsigned &upper) |
Deactivate all tasks with i in lower \(\le\) i < upper. More... | |
void | addTaskToList (const unsigned &taskCode) |
Add a task to the full list. More... | |
Protected Attributes | |
std::vector < ReferenceConfiguration * > | data |
The data we are going to analyze. More... | |
Atoms & | atoms |
std::vector< bool > | thisval_wasset |
A boolean that makes sure we don't accumulate very wrong derivatives. More... | |
bool | contributorsAreUnlocked |
The terms in the series are locked. More... | |
bool | weightHasDerivatives |
Does the weight have derivatives. More... | |
unsigned | bridgeVariable |
This is used for numerical derivatives of bridge variables. More... | |
Private Member Functions | |
void | readDataFromFile (const std::string &filename) |
Read in data from a file. More... | |
double | retrieveNorm () const |
This retrieves the value of norm from the analysis action. More... | |
std::vector< double > | getMetric () const |
Get the metric if we are using malonobius distance and flexible hill. More... | |
Private Attributes | |
bool | single_run |
Are we running only once for the whole trajectory. More... | |
bool | nomemory |
Are we treating each block of data separately. More... | |
bool | write_chq |
Are we writing a checkpoint file. More... | |
bool | reusing_data |
Are we reusing data stored by another analysis action. More... | |
bool | ignore_reweight |
If we are reusing data are we ignoring the reweighting in that data. More... | |
Analysis * | mydatastash |
The Analysis action that we are reusing data from. More... | |
unsigned | freq |
The frequency with which we are performing analysis. More... | |
unsigned | ndata |
Number of data point we need to run analysis. More... | |
double | simtemp |
The temperature at which we are running the calculation. More... | |
double | rtemp |
The temperature at which we want the histogram. More... | |
bool | needeng |
Do we need the energy (are we reweighting at a different temperature) More... | |
std::vector< Value * > | biases |
The biases we are using in reweighting and the args we store them separately. More... | |
unsigned | idata |
The piece of data we are inserting. More... | |
std::vector< double > | logweights |
The weights of all the data points. More... | |
bool | firstAnalysisDone |
Have we analyzed the data for the first time. More... | |
double | norm |
The value of the old normalization constant. More... | |
double | old_norm |
std::string | ofmt |
The format to use in output files. More... | |
std::vector< double > | current_args |
Tempory vector to store values of arguments. More... | |
std::vector< std::string > | argument_names |
List of argument names. More... | |
std::string | metricname |
The type of metric we are using to measure distances. More... | |
OFile | rfile |
The checkpoint file. More... | |
This is the abstract base class to use for implementing new methods for analyzing the trajectory, within it there is information as to how to go about implementing a new analysis method.
|
inherited |
|
inherited |
PLMD::analysis::Analysis::Analysis | ( | const ActionOptions & | ao | ) |
PLMD::analysis::Analysis::~Analysis | ( | ) |
void PLMD::analysis::Analysis::accumulate | ( | ) |
|
inlineprotectedinherited |
This is used to accumulate the derivatives when we merge using chainRuleForElementDerivatives.
|
virtualinherited |
Set action to active.
|
inlinevirtualinherited |
These are overwritten in MultiColvarFunction.
Reimplemented in PLMD::multicolvar::MultiColvarBase.
|
inherited |
Switch on additional tasks.
|
protectedinherited |
Add a bridging vessel to the list of vessels.
|
inherited |
Specify that this Action depends on another one.
|
inlineinherited |
Add some derivative of the quantity in the sum wrt to a numbered element.
|
inlineinherited |
Add to an element value.
|
inherited |
Add forces to arguments (used in apply)
|
protectedinherited |
Add a task to the full list.
|
protectedinherited |
Add a vessel to the list of vessels.
|
protectedinherited |
|
inlinevirtual |
Apply an Action.
This method is called one time per step. The set of all Actions is applied in backward order.
Implements PLMD::Action.
|
inlinevirtualinherited |
Apply forces from bridge vessel - this is rarely used - currently only in ActionVolume.
Reimplemented in PLMD::multicolvar::ActionVolume, and PLMD::manyrestraints::ManyRestraintsBase.
|
inherited |
|
inlineinherited |
Takes one value and brings it back into the pbc of argument i.
|
virtualinherited |
Ensure that data required in other vessels is stored.
Reimplemented in PLMD::multicolvar::MultiColvarBase, and PLMD::crystallization::VectorMultiColvar.
|
virtual |
Calculate an Action.
This method is called one or more times per step. The set of all Actions is calculated in forward order.
Implements PLMD::Action.
|
protectedinherited |
This loops over all the vessels calculating them and also sets all the element derivatives equal to zero.
|
inherited |
Numerical derivative routine to use when using Actions that inherit from BOTH ActionWithArguments and ActionAtomistic.
|
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
|
inlinevirtual |
N.B.
only pass an ActionWithValue to this routine if you know exactly what you are doing. The default will be correct for the vast majority of cases
Reimplemented from PLMD::ActionAtomistic.
|
inherited |
Merge the derivatives.
|
inherited |
|
inherited |
Change the box shape.
|
inlinevirtualinherited |
Check if the action needs gradient.
Reimplemented in PLMD::bias::MetaD, 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 |
Cite a paper see PlumedMain::cite.
|
protectedinherited |
Clear tempory data that is calculated for each task.
|
inherited |
Clear the dependence list for this Action.
|
virtualinherited |
|
virtualinherited |
|
inherited |
|
inlinevirtualinherited |
Set action to inactive.
|
virtualinherited |
Activate the jth colvar Deactivate the current task in future loops.
Reimplemented in PLMD::multicolvar::ActionVolume, and PLMD::manyrestraints::ManyRestraintsBase.
|
protectedinherited |
Deactivate all the tasks in the task list.
|
protectedinherited |
Deactivate all tasks with i in lower \(\le\) i < upper.
|
inlineinherited |
Are derivatives required for this quantity.
|
inlineinherited |
Takes the difference taking into account pbc for arg i.
|
virtualinherited |
Do any jobs that are required before the task list is undertaken.
Reimplemented in PLMD::multicolvar::ActionVolume, PLMD::multicolvar::Angles, PLMD::multicolvar::Bridge, PLMD::multicolvar::AdjacencyMatrixAction, and PLMD::manyrestraints::ManyRestraintsBase.
|
inlineinherited |
Skip atom forces - use with care.
If this function is called during initialization, then forces are not going to be propagated. Can be used for optimization.
|
inlineinherited |
Skip atom retrieval - use with care.
If this function is called during initialization, then atoms are not going to be retrieved. Can be used for optimization. Notice that calling getPosition(int) in an Action where DoNotRetrieve() was called might lead to undefined behavior.
|
inherited |
Crash calculation and print documentation.
|
inherited |
Exit with error code c.
|
protectedinherited |
This changes the arg keyword in the pdb file.
|
inherited |
Closes a file opened with Action::fclose().
|
inherited |
Tell to the Action to flush open files.
|
protected |
Convert the stored log weights to proper weights.
|
virtualinherited |
Finish running all the calculations.
|
inlinevirtualinherited |
|
inherited |
Opens a file.
This is similar to plain fopen, but with some extra functionality.
|
inlineinherited |
Get the absolute index of an atom.
|
inlineinherited |
Get the vector of absolute indexes.
|
inlineprotectedinherited |
Get the ith of the currently active tasks.
|
inlineinherited |
Returns the value of an argument.
|
inlineprotected |
Overwrite ActionWithArguments getArguments() so that we don't return the bias.
|
inlineinherited |
Get box shape.
|
inlineinherited |
Get charge of i-th atom.
|
inlineprotectedinherited |
Get the number of tasks that are currently active.
|
inlineprotectedinherited |
Get the current task's position in the task list.
|
inlineprotectedinherited |
Return the number that provides instructions for the current task.
|
protected |
Retrieve the ith point.
|
inlineinherited |
Return dependencies.
|
virtualinherited |
|
inlineinherited |
Retrieve the derivative of the quantity in the sum wrt to a numbered element.
|
inlineinherited |
Get the value of this element.
|
inlineinherited |
Get energy.
|
inherited |
Check if we are on an exchange step.
|
protectedinherited |
Retrieve the forces from all the vessels (used in apply)
|
inlineinherited |
Get the full size of the taskList dynamic list.
|
virtualinherited |
Get the list of indices that have derivatives.
Reimplemented in PLMD::multicolvar::MultiColvarBase, and PLMD::multicolvar::Density.
|
inlineinherited |
Returns the label.
|
inlineinherited |
Get mass of i-th atom.
|
private |
Get the metric if we are using malonobius distance and flexible hill.
|
inlineprotected |
Get the name of the metric we are using to measure distances.
|
inlineinherited |
Returns the name.
|
inlineprotectedinherited |
Return the value for the neighbor list tolerance.
|
protected |
Return the normalization constant.
|
inlineprotected |
Return the number of arguments (this overwrites the one in ActionWithArguments)
|
inlineinherited |
Get number of available atoms.
|
inlineprotected |
Return the number of data points.
|
inlinevirtual |
Get the number of derivatives for final calculated quantity.
Implements PLMD::vesselbase::ActionWithVessel.
|
inlinevirtualinherited |
Get the number of quantities that are calculated during each task.
Reimplemented in PLMD::multicolvar::MultiColvarBase, PLMD::crystallization::VectorMultiColvar, PLMD::multicolvar::ActionVolume, PLMD::multicolvar::LocalAverage, and PLMD::multicolvar::Density.
|
inlineprotectedinherited |
Get the number of vessels.
|
inlineprotected |
Return the format to use for numbers in output files.
|
protected |
Returns true if argument i is periodic together with the domain.
|
inlineinherited |
Return a pointer to specific argument.
|
inlineprotectedinherited |
Get a pointer to the ith vessel.
|
inlineinherited |
Get position of i-th atom (access by relative index)
|
inlineinherited |
Get position of i-th atom (access by absolute AtomNumber).
With direct access to the global atom array
|
inlineprotectedinherited |
Get the position of the ith active task in the full list.
|
inlineinherited |
Get the array of all positions.
|
inherited |
Get the scalar product between the gradients of two variables.
|
inherited |
Return the present timestep.
|
protectedinherited |
|
protected |
Return the set temperature (N.B. k_B T is what is returned by this function)
|
inherited |
Return the present time.
|
inherited |
Return the timestep.
|
inlineprotectedinherited |
Return the value of the tolerance.
|
inlineinherited |
Get total number of atoms, including virtual ones.
Can be used to make a loop on modifyPosition or getPosition(AtomNumber)
|
inlineinherited |
|
inherited |
Return a particular named vessel.
|
protected |
Return the weight of the ith point.
|
inherited |
Convert a list of argument names into a list of pointers to the values.
|
inlineinherited |
Check if action is active.
|
inlineinherited |
Check if an option is on.
|
inlinevirtual |
Are the base quantities periodic.
Implements PLMD::vesselbase::ActionWithVessel.
|
inherited |
|
inlinevirtual |
Reimplemented from PLMD::Action.
|
virtualinherited |
|
inlineinherited |
Get a reference to force on energy.
|
inlineinherited |
Get a reference to forces array.
|
inlineinherited |
Get modifiable force of i-th atom (access by absolute AtomNumber).
Should be used by action that need to modify the stored atomic forces
|
inlineinherited |
Get modifiable virial Should be used by action that need to modify the stored virial.
|
inlineinherited |
Get modifiable position of i-th atom (access by absolute AtomNumber).
Should be used by action that need to modify the stored atomic coordinates
|
inlineinherited |
Get a reference to virial array.
|
protectedinherited |
Turn on the derivatives in the vessel.
|
inherited |
Check if the action is active on this step.
|
inherited |
Parse one keyword as generic type.
|
inherited |
Parse a list of arguments.
|
inherited |
Parse a list of atoms without a numbered keyword.
|
inherited |
Parse an list of atom with a numbred keyword.
|
inherited |
Parse one keyword as boolean flag.
|
inherited |
Parse one numbered keyword as generic type.
|
inherited |
Parse a vector with a number.
|
protected |
This is used to read in output file names for analysis methods.
When this method is used and the calculation is not restarted old analysis files are backed up.
|
inherited |
Parse one keyword as std::vector.
Compute the pbc distance between two positions.
|
pure virtual |
Implemented in PLMD::analysis::Histogram, and PLMD::analysis::AnalysisWithLandmarks.
|
pure virtualinherited |
Get the index for a particular numbered task.
Calculate one of the functions in the distribution
Implemented in PLMD::multicolvar::MultiColvarBase, PLMD::analysis::Histogram, PLMD::multicolvar::ActionVolume, PLMD::secondarystructure::SecondaryStructureRMSD, PLMD::manyrestraints::UWalls, PLMD::analysis::AnalysisWithLandmarks, and PLMD::mapping::PathBase.
|
virtual |
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 from PLMD::Action.
|
virtualinherited |
Read in an input file containing atom positions and calculate the action for the atomic configuration therin.
Reimplemented from PLMD::Action.
|
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.
|
private |
Read in data from a file.
|
protectedinherited |
Complete the setup of this object (this routine must be called after construction of ActionWithValue)
|
static |
|
inherited |
Setup the dependencies.
|
inherited |
Request an array of atoms.
This method is used to ask for a list of atoms. Atoms should be asked for by number. If this routine is called during the simulation, atoms will be available at the next step MAYBE WE HAVE TO FIND SOMETHING MORE CLEAR FOR DYNAMIC LISTS OF ATOMS
|
protectedinherited |
Resize all the functions when the number of derivatives change.
|
inherited |
|
virtualinherited |
What are the domains of the base quantities.
Reimplemented in PLMD::multicolvar::Torsions.
|
inlineprivate |
This retrieves the value of norm from the analysis action.
It is only used to transfer data from one analysis action to another. You should never need to use it. If you think you need it you probably need getNormalization()
|
protectedinherited |
Calculate the values of all the vessels.
void PLMD::analysis::Analysis::runAnalysis | ( | ) |
|
virtual |
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 from PLMD::Action.
|
inlineprotectedinherited |
Is the calculation being done in serial.
|
inlineinherited |
Set the derivative of the jth element wrt to a numbered element.
|
inlineinherited |
Set the value of the element.
|
inherited |
Add the forces to the atoms.
|
inlineprotectedinherited |
Set that we are using low memory.
|
protectedinherited |
Set the maximum number of derivatives.
|
virtualinherited |
|
inherited |
|
inlinevirtual |
Reimplemented from PLMD::Action.
|
virtual |
Update.
This method is called one time per step. The set of all Actions is updated in forward order.
Reimplemented from PLMD::Action.
|
inlineprotectedinherited |
Are we using low memory.
|
inlineprotected |
Are we analyzing each data block separately (if we are not this also returns the old normalization )
|
inherited |
Issue a warning.
|
private |
List of argument names.
|
protectedinherited |
|
private |
The biases we are using in reweighting and the args we store them separately.
|
protectedinherited |
This is used for numerical derivatives of bridge variables.
|
inherited |
|
protectedinherited |
The terms in the series are locked.
|
private |
Tempory vector to store values of arguments.
|
protected |
The data we are going to analyze.
|
inherited |
|
private |
Have we analyzed the data for the first time.
|
private |
The frequency with which we are performing analysis.
|
private |
The piece of data we are inserting.
|
private |
If we are reusing data are we ignoring the reweighting in that data.
|
inherited |
|
inherited |
Reference to the log stream.
|
private |
The weights of all the data points.
|
private |
The type of metric we are using to measure distances.
|
inherited |
|
private |
The Analysis action that we are reusing data from.
|
private |
Number of data point we need to run analysis.
|
private |
Do we need the energy (are we reweighting at a different temperature)
|
private |
Are we treating each block of data separately.
|
private |
The value of the old normalization constant.
|
private |
The format to use in output files.
|
private |
|
inherited |
Reference to main plumed object.
|
private |
Are we reusing data stored by another analysis action.
|
private |
The checkpoint file.
|
private |
The temperature at which we want the histogram.
|
private |
The temperature at which we are running the calculation.
|
private |
Are we running only once for the whole trajectory.
|
protectedinherited |
A boolean that makes sure we don't accumulate very wrong derivatives.
|
protectedinherited |
Does the weight have derivatives.
|
private |
Are we writing a checkpoint file.
Hosted by GitHub | 1.8.7 |