- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMolTree.cpp
More file actions
Latest commit
22 lines (18 loc) · 598 Bytes
/
Copy pathMolTree.cpp
File metadata and controls
22 lines (18 loc) · 598 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//============================================================================
// Name : MolTree.cpp
// Author : Argo
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
// Use : It creates a tree for the input structures (PDb/PQR) file
//============================================================================
#include<iostream>
#include"Molecule.h"
#include"coordinates.h"
usingnamespacestd;
intmain() {
Real xyz1[3] = { 9.0, 4.4, -5.0 };
coord3D * r1 = newcoord3D(xyz1);
r1->printCoordinates();
return0;
}