mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
14 lines
176 B
OCaml
14 lines
176 B
OCaml
type nucleus =
|
|
{
|
|
element: Element.t ;
|
|
coord: Angstrom.t;
|
|
}
|
|
|
|
type xyz_file =
|
|
{
|
|
number_of_atoms : int;
|
|
file_title : string;
|
|
nuclei : nucleus list;
|
|
}
|
|
|