-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgammatypes.h
93 lines (74 loc) · 2.23 KB
/
gammatypes.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#ifndef _GAMMATYPES_H
#define _GAMMATYPES_H
/************* gammatypes.h **************************/
#ifdef CONTROL
#define EXTERN
#else
#define EXTERN extern
#endif
/*
gamma(XUP)
0 0 0 i
0 0 i 0
0 -i 0 0
-i 0 0 0
gamma(YUP)
0 0 0 -1
0 0 1 0
0 1 0 0
-1 0 0 0
gamma(ZUP)
0 0 i 0
0 0 0 -i
-i 0 0 0
0 i 0 0
gamma(TUP)
0 0 1 0
0 0 0 1
1 0 0 0
0 1 0 0
gamma(FIVE)
1 0 0 0
0 1 0 0
0 0 -1 0
0 0 0 -1
*/
/* Note: the order of the first five is fixed for compatibility with
previous versions of mult_by_gamma */
enum gammatype { GX,GY,GZ,GT,G5,GYZ,GZX,GXY,GXT,GYT,GZT,G5X,G5Y,G5Z,G5T,G1,
MAXGAMMA };
/* This encoding of gamma matrices works for representations in which
matrix is just a permutation matrix with a phase change
corresponding to the fourth roots of 1. See the BJ-Drell convention above.
The matrix gamma_{r,c} (row index r, column index c) is encoded
so that gamma.row[r].column = c is the only nonzero column in row r
and gamma.row[r].phase specifies the phase of that matrix element
*/
typedef struct {
int column; /* encodes column with nonzero entry */
int phase; /* encodes phase of matrix element: 0,1,2,3 ->
1,i,-1,-i */
} gamma_row;
typedef struct {
gamma_row row[4];
} gamma_matrix;
/* First four gamma matrices are initialized according to the above
conventions the ones for gamma_x gamma_y gamma_z gamma_t are used
to generate the rest */
#ifdef CONTROL
gamma_matrix gamma_mat[MAXGAMMA] = {
{ 3,1 , 2,1 , 1,3 , 0,3 }, /* gamma_x */
{ 3,2 , 2,0 , 1,0 , 0,2 }, /* gamma_y */
{ 2,1 , 3,3 , 0,3 , 1,1 }, /* gamma_z */
{ 2,0 , 3,0 , 0,0 , 1,0 } /* gamma_t */
};
#else
EXTERN gamma_matrix gamma_mat[MAXGAMMA] ;
#endif
EXTERN int gamma_initialized ;
typedef struct {
int gin; /* Source gamma matrix */
int gout; /* Sink gamma matrix */
int oper; /* Operator identification */
} gamma_corr;
#endif /* _GAMMATYPES_H */