CHROMA
fuzwilp.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 // version with added tmax
3 /*! \file
4  * \brief Calculate ape-fuzzed Wilson loops
5  */
6 
7 #ifndef __fuzwilp_h__
8 #define __fuzwilp_h__
9 
10 namespace Chroma {
11 //! Calculate ape-fuzzed Wilson loops
12 /*!
13  * \ingroup glue
14  *
15  * Computes time-like APE_fuzzed Wilson loops, including non-planar loops,
16  *
17  * This version makes APE-smeared links with no blocking as required
18  * for potential clculations
19  *
20  * Warning: This version is VERY Slow as it has non-recursive shifting
21  * of some link products
22  * Search for 'cap' on loop values to control no of loops
23  * calculated
24  * Warning: this works only for Nc = 2 and 3 ! (Projection of
25  * smeared/blocked links)
26  *
27  * Warning: this version assumes the space-like directions (perpendicular
28  * to j_decay) to have equal length.
29  *
30  * \param u gauge field ( Read )
31  * \param j_decay 'time' direction for 'fuzzed' Wilson loops ( Read )
32  * \param tmax maximum time-extent loops ( Read )
33  * \param n_smear number of applying smearing to the gauge links ( Read )
34  * \param sm_fact "smearing" factor = weight of old link w. r. to staples ( Read )
35  * \param BlkAccu accuracy in fuzzy link projection ( Read )
36  * \param BlkMax maximum number of iterations in fuzzy link projection ( Read )
37  */
38 
39 void fuzwilp(const multi1d<LatticeColorMatrix>& u,
40  int j_decay, int tmax, int n_smear,
41  const Real& sm_fact, const Real& BlkAccu, int BlkMax,
42  XMLWriter& xml, const std::string& xml_group);
43 
44 } // End namespace
45 
46 #endif
void fuzwilp(const multi1d< LatticeColorMatrix > &u, int j_decay, int tmax, int n_smear, const Real &sm_fact, const Real &BlkAccu, int BlkMax, XMLWriter &xml, const std::string &xml_group)
Calculate ape-fuzzed Wilson loops.
Definition: fuzwilp.cc:38
int j_decay
Definition: meslate.cc:22
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
static multi1d< LatticeColorMatrix > u
::std::string string
Definition: gtest.h:1979