sisi4s
Loading...
Searching...
No Matches
AngularMomentum.hpp
Go to the documentation of this file.
1#ifndef _ANGULAR_MOMENTUM_HEADER_ALE_YEAH
2#define _ANGULAR_MOMENTUM_HEADER_ALE_YEAH
3
4#include <vector>
5#include <string>
6
7namespace am {
9 S = 1,
10 P = 3,
11 D = 5,
12 F = 7,
13 G = 9,
14 H = 11,
15 I = 13,
16 K = 15
17};
18std::vector<AngularMomentum> all();
19size_t toInt(const AngularMomentum &);
20AngularMomentum fromString(const std::string &);
21} // namespace am
22
23#endif
Definition AngularMomentum.hpp:7
size_t toInt(const AngularMomentum &)
Definition AngularMomentum.cxx:4
AngularMomentum
Definition AngularMomentum.hpp:8
@ G
Definition AngularMomentum.hpp:13
@ H
Definition AngularMomentum.hpp:14
@ S
Definition AngularMomentum.hpp:9
@ D
Definition AngularMomentum.hpp:11
@ P
Definition AngularMomentum.hpp:10
@ K
Definition AngularMomentum.hpp:16
@ I
Definition AngularMomentum.hpp:15
@ F
Definition AngularMomentum.hpp:12
std::vector< AngularMomentum > all()
Definition AngularMomentum.cxx:3
AngularMomentum fromString(const std::string &)
Definition AngularMomentum.cxx:6