[][src]Module trajan::particle

A module to handle any kind of format in the same way.

Different format contains the trajectory data in a different way. It is not realistic implementing the same operations (like, calculating RMSD) for all the file format. However, simultaneously, it is neither realistic converting all the format into the same data container that can have any kind of data because the data type may become too large.

Here, a trait that all the SomeParticle struct must implement. Through this, all the data format can be accessible in the uniform way.

Enums

Attribute

An enum to have a value that might be contained in a file.

Traits

Particle

A trait that should be implemented for all the Particle classes to provide the same interface for any kind of file format