MolSSI Integral Reference Project
reffile_io.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Helper functions for reading/writing reference data files
4  */
5 
6 #pragma once
7 
9 #include <iostream>
10 
11 namespace mirp {
12 
13 
14 /*! \brief Reads a double precision number from an ASCII file
15  *
16  * The main purpose of this is to convert hexfloat to doubles,
17  * since it seems streams can't read hexfloat
18  *
19  * One double is extracted, and the stream advanced
20  */
21 double read_hexdouble(std::istream & fs);
22 
23 
24 /*! \brief Writes a double precision number as a hexfloat to an ASCII file
25  *
26  * The main purpose of this is to convert doubles to hexfloat, due to
27  * some standard libraries not supporting std::hexfloat
28  *
29  * One double is written, and the stream advanced
30  */
31 void write_hexdouble(double d, std::ostream & fs);
32 
33 
34 /*! \brief Write basis information to a file
35  *
36  * \param [in] shells The basis information to write
37  * \param [in] fs Stream to write the information to
38  */
39 void reffile_write_basis(const std::vector<gaussian_shell> & shells, std::ostream & fs);
40 
41 
42 /*! \brief Reads basis information from a reference file
43  *
44  * \param [in] fs The file stream to read from
45  * \return The shells contained in the basis in the file
46  */
47 std::vector<gaussian_shell> reffile_read_basis(std::istream & fs);
48 
49 
50 } // closing namespace mirp
51 
void write_hexdouble(double d, std::ostream &fs)
Writes a double precision number as a hexfloat to an ASCII file.
Definition: reffile_io.cpp:22
void reffile_write_basis(const std::vector< gaussian_shell > &shells, std::ostream &fs)
Write basis information to a file.
Definition: reffile_io.cpp:34
Common data structures (shells, entries, etc)
double read_hexdouble(std::istream &fs)
Reads a double precision number from an ASCII file.
Definition: reffile_io.cpp:14
std::vector< gaussian_shell > reffile_read_basis(std::istream &fs)
Reads basis information from a reference file.
Definition: reffile_io.cpp:74