Kindfield
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Friends Pages
gaussiantypeorbital.cpp
Go to the documentation of this file.
1 #include "gaussiantypeorbital.h"
2 
3 GaussianTypeOrbital::GaussianTypeOrbital(double weight, double exponent)
4 {
5  (void)weight;
6  (void)exponent;
7 }
8 
10 {
11  return m_exponent;
12 }
13 
14 void GaussianTypeOrbital::setExponent(double exponent)
15 {
16  m_exponent = exponent;
17 }
18 
20 {
21  return m_weight;
22 }
23 
24 void GaussianTypeOrbital::setWeight(double weight)
25 {
26  m_weight = weight;
27 }
28