Giacomo Fiorin
Giacomo Fiorin
As mentioned in the conversation for #481, update the registry of output files to use a `std::map` rather than two paired lists, which are no longer worth using any more.
See #367 #407 and some messages in the [NAMD](https://www.ks.uiuc.edu/Research/namd/mailing_list/namd-l.2020-2021/0223.html) and [LAMMPS](https://matsci.org/t/re-lammps-users-jacobian-terms-in-the-colvar-package/41288) forums. Nothing too verbose or extensive is needed: users just ought to be aware that the term is present...
@HanatoK Appending to files that already exist on disk is useful in some cases, but also rather fragile (for examples, when jobs crash and are restarted). @jhenin had already removed...
These would be easily calculated if the atomic gradients were stored in the atom group. Solving issue #61 would allow to solve this easily, too. Meanwhile, a `f_cvc_fit_gradients` feature could...
Currently, these are features of a `colvar`, which limits to defining only one instance of either function, and is not continued between runs, leading to not using a few frames...
This PR extends the interface introduced in #216 while taking advantage of the scripting API enhancements from #316. The LAMMPS command `fix_modify` is used as the main command, which behaves...
See #468 and links therein. The following is a list of classes that use grids, and which could be optionally be allowed to define custom grids: - [ ] `colvarbias_abf`...
This issue can be broken up in multiple steps: - [ ] Transform the `atom_group` class into a container for vectors of shape `xxxx...`, `yyyy...` and `zzzz...` for positions, velocities...
Coordinate loading functions are renamed to reflect that they are specific to the PDB format. Fixes #667
When loading a file that isn't XYZ the first branch of the conditional below fails, falling back to the PDB reader: https://github.com/Colvars/colvars/blob/8eb35e75c43d6f7e16d8e634e827639097d16368/src/colvarmodule.cpp#L2159-L2171 In GROMACS the resulting error message can be...