-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlattice.h
60 lines (41 loc) · 1.3 KB
/
lattice.h
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*!
\file lattice.h
\brief Functions to enumerate bonds between lattice sites
*/
#include<iostream>
#include<cstdlib>
using namespace std;
/*!
\brief Fills array with bond information for 12A cluster
\param Bond Array which will be filled with connection information
*/
void Fill_Bonds_12A(int* Bond);
/*!
\brief Fills array with bond information for 16A cluster
\param Bond Array which will be filled with connection information
*/
void Fill_Bonds_16A(int* Bond);
/*!
\brief Fills array with bond information for 16B cluster
\param Bond Array which will be filled with connection information
*/
void Fill_Bonds_16B(int* Bond);
/*!
\brief Fills array with bond information for 18A cluster
\param Bond Array which will be filled with connection information
*/
void Fill_Bonds_18A(int* Bond);
/*!
\brief Fills array with bond information for 18A cluster
\param Bond Array which will be filled with connection information
*/
void Fill_Bonds_20A(int* Bond);
/*!
\brief Fills array with bond information for 20A cluster
\param Bond Array which will be filled with connection information
*/
void Fill_Bonds_22A(int* Bond);
/*!
\brief Fills array with bond information for 22A cluster
\param Bond Array which will be filled with connection information
*/