10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-05-31 18:35:18 +02:00
QCaml/Nuclei/Xyz_ast.mli
2018-03-03 22:13:14 +01:00

17 lines
308 B
OCaml

(** When an [xyz] file is read by the [Xyz_parser.mly], it is converted into
an {!xyz_file} data structure. *)
type nucleus =
{
element: Element.t ;
coord : Angstrom.t;
}
type xyz_file =
{
number_of_atoms : int ;
file_title : string ;
nuclei : nucleus list ;
}