#include <fermiqcd_gauge_field.h>
Inheritance diagram for em_field:

Public Member Functions | |
| em_field (mdp_lattice &a, int nc_) | |
| em_field (em_field &em) | |
| void | allocate_em_field (mdp_lattice &a, int nc_) |
| int | ordered_index (int mu, int nu) const |
| mdp_matrix | operator() (site x, int mu, int nu) |
| mdp_complex & | operator() (site x, int mu, int nu, int i, int j) |
| const mdp_complex & | operator() (site x, int mu, int nu, int i, int j) const |
Public Attributes | |
| int | ndim |
| int | nc |
| int | nem |
Example:
int nc=3;
int box[]={10,8,8,8};
mdp_lattice lattice(4,box);
gauge_field U(lattice,nc);
mdp_site x(lattice);
U.load("myfield");
compute_em_field(U);
forallsites(x)
for(int mu=0; mu<U.ndim; mu++)
for(int nu=mu+1; nu<U.ndim; nu++)
cout << U.em(x,mu,nu) << endl;
and it is a color matrix in SU(nc).
is the lattice spacing.
1.4.1