1 //
2 //  basis_function.h
3 //  libmsym
4 //
5 //  Created by Marcus Johansson on 07/11/14.
6 //  Copyright (c) 2014 Marcus Johansson.
7 //
8 //  Distributed under the MIT License ( See LICENSE file or copy at http://opensource.org/licenses/MIT )
9 //
10 
11 #ifndef __MSYM__BASIS_FUNCTION_h
12 #define __MSYM__BASIS_FUNCTION_h
13 
14 #include <stdio.h>
15 #include "msym.h"
16 
17 msym_error_t basisFunctionFromName(char *, msym_basis_function_t *bf);
18 msym_error_t basisFunctionFromQuantumNumbers(int n, int l, int m, msym_basis_function_t *bf);
19 
20 
21 #endif /* defined(__MSYM__BASIS_FUNCTION_h) */
22