Kindfield
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Friends Pages
gaussiantypeorbital.h
Go to the documentation of this file.
1 #ifndef GAUSSIANTYPEORBITAL_H
2 #define GAUSSIANTYPEORBITAL_H
3 
4 #include <armadillo>
5 
6 using namespace arma;
7 
9 {
10 public:
11  GaussianTypeOrbital(double weight = 0, double exponent = 0);
12 
13  double exponent() const;
14  void setExponent(double exponent);
15 
16  double weight() const;
17  void setWeight(double weight);
18 
19 private:
20  double m_weight;
21  double m_exponent;
22 };
23 
24 #endif // GAUSSIANTYPEORBITAL_H