Exercise 7: | Rho Meson |
Goals: | Computing vector meson two-point function |
Concepts: | Gamma matrices |
Directory: | $HOME/examples/07-rho |
How to: | $
cd
$HOME/examples/07-rho $ make $ submit rho /scratch/data/beta6_gauge_8x8x8x16 0.1493 |
In this exercise we compute a vector meson two point function and introduce γ matrices. QDP has a hardwired prepresentation of the Clifford algebra basis that is used by all routines in the library. The user can access the γ-matrices by using a small integer. All products of γ-matrices can be expresses as a product of the following form: γ1aγ2bγ3cγ4d where each of a, b, c and d is either 0 or 1. Then the index of this particular product is the number [dcba]2. Since Sρ = Trt(Pγ1PTγ1), and P=γ5P+γ5, one computes Sρ as follows (this is rho.c). Since γ-matrices do not commute, we need to be mindful on which side of the propagator they are, see lines 37 and 38)
12 print_rho(QDP_DiracPropagator *prop, int t0)
|
43 /* print result */
|