10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-01 02:45:29 +02:00
quantum_package/ocaml/Basis.mli

18 lines
544 B
OCaml
Raw Normal View History

2014-09-17 23:47:13 +02:00
open Qptypes;;
type t = (Gto.t * Atom_number.t) list
(** Read all the basis functions of an element and set the number of the
* atom *)
val read : in_channel -> Atom_number.t -> (Gto.t * Atom_number.t) list
(** Find an element in the basis set file *)
val find : in_channel -> Element.t -> Element.t
(** Read the basis of an element from the file *)
val read_element :
in_channel -> Atom_number.t -> Element.t -> (Gto.t * Atom_number.t) list
(** Convert the basis to a string *)
val to_string : (Gto.t * Atom_number.t) list -> string