File: fixture.h

package info (click to toggle)
libint2 2.7.2-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 63,792 kB
  • sloc: ansic: 842,934; cpp: 47,847; sh: 3,139; makefile: 1,017; f90: 676; perl: 482; python: 334
file content (34 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// Created by Eduard Valeyev on 7/3/18.
//

#ifndef LIBINT_FIXTURE_H
#define LIBINT_FIXTURE_H

#include <libint2.hpp>

using libint2::Atom;
using libint2::BasisSet;
using libint2::Shell;
using libint2::Engine;
using libint2::Operator;
using libint2::BraKet;
using libint2::CartesianShellNormalization;

namespace libint2 {
namespace unit {

class DefaultFixture {
public:
  DefaultFixture() : atoms{ {8, 0.,0.,0.}, {8, 0.,0.,2.}, {1, 0.,-1.,-1.}, {1, 0.,1.,3.}},
    obs("6-31g*", atoms),
    dfbs("aug-cc-pvdz", atoms) {}
protected:
  std::vector<Atom> atoms;
  BasisSet obs, dfbs;
};

}
}

#endif //LIBINT_FIXTURE_H