-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
45 lines (40 loc) · 1.19 KB
/
main.cpp
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
35
36
37
38
39
40
41
42
43
44
45
/*
* =====================================================================================
*
* Filename: escher.cpp
*
* Description: A molecular visualizer for QTAIM/IQA and
* emergent scalar fields topology.
* Special focus is paid to in-home programs:
* Critic2 and Promolden.
*
* Version: 1.0
* Created: 07/04/2016 12:33:54 PM
* Revision: none
* Compiler: gcc
*
* Author: Daniel (dmc), [email protected]
* Organization: University of Oviedo
*
* =====================================================================================
*/
#include <iostream>
// EyeOfSauron
#include "include/eyeos.hpp"
using namespace std;
using namespace OpenBabel;
int main(int argc, char **argv)
{
EyeOfSauron eyeos;
//string infname = "input.xyz";
string infname = "test/aragonite.9.4-grad.cube";
eyeos.ReadFile(infname);
infname = "test/aragonite-1.basin";
eyeos.ReadBasin(infname, 20); // Ca
infname = "test/aragonite-5.basin";
eyeos.ReadBasin(infname, 6); // C
infname = "test/aragonite-9.basin";
eyeos.ReadBasin(infname, 8); // O
eyeos.SeeAll();
return EXIT_SUCCESS;
}