The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2016-07-01 | 1.8 kB | |
| Version 0.6.tar.gz | 2016-07-01 | 1.7 MB | |
| Version 0.6.zip | 2016-07-01 | 1.7 MB | |
| Totals: 3 Items | 3.4 MB | 0 | |
Core library
- Improve the selection language to allow selecting multiple atoms at once. For
example,
"pairs: name($1) H and mass($2) > 5"will select all pairs of atoms where the first atom name is'H'and the second atom mass is bigger than 5.- The implemented modes for selections are
one,atoms,two,pairs,three,four,bonds,anglesanddihedrals; - The
Selectionclass is now directly exposed to the C API, asCHFL_SELECTION*. Thechfl_frame_selectionfunction is replaced by thechfl_selection,chfl_selection_size,chfl_selection_evalutate,chfl_selection_matchesandchfl_selection_freefunctions, and thechfl_match_thelper struct.
- The implemented modes for selections are
- Add the
chfl_clear_errorsfunction, to cleanup the error state of the C API. - Molfiles plugins are now incorporated in the chemfiles library, and no longer
distributed as shared libraries. The
CHEMFILES_PLUGINSenvironment variable is a no-op. - The caching of angles and dihedrals is now an implementation detail. That
means that
Topology::recalculateis gone, and thatFrame::guess_topologyandchfl_frame_guess_topologydo not take a boolean parameter anymore. - The opening mode is now a
charinstead of a string inTrajectoryconstructor,chfl_trajectory_open, andchfl_trajectory_with_format. - Remove
operator<<andoperator>>forTrajectory. Users should useTrajectory::readandTrajectory::write - Users can now specify the format when reading the topology associated with a
trajectory from a file. The
chfl_trajectory_set_topology_with_formatfunction can be used to do so from the C API. - The
chfl_atom_from_{frame,topology}function now returnNULLin case of out-of-bound access.