#include <mdp_vector_field.h>
Inheritance diagram for mdp_vector_field:

Public Member Functions | |
| mdp_vector_field (mdp_vector_field &field) | |
| mdp_vector_field (mdp_lattice &a, int i) | |
| void | allocate_mdp_vector_field (mdp_lattice &a, int i) |
| mdp_matrix | operator() (mdp_site x) |
| mdp_complex & | operator() (mdp_site x, int i) |
| returns component i of the vector of objects T stored at site x | |
| const mdp_complex & | operator() (mdp_site x, int i) const |
Public Attributes | |
| int | rows |
| int | columns |
| int | imax |
Example:
int box[]={10,10,10};
mdp_lattice lattice(3,box);
mdp_vector_field h(lattice,10);
mdp_site x(lattice);
forallsites(x)
h(x)=0.0+0.0*I;
1.4.1