-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamma.hpp
49 lines (41 loc) · 832 Bytes
/
gamma.hpp
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
//
// gamma.hpp
// pertutils
//
// Created by Thorsten Kurth on 23.04.13.
// Copyright (c) 2013 Bergische Universität Wuppertal. All rights reserved.
//
//this files contains 4D spinor matrix generation:
#ifndef _GAMMA
#define _GAMMA
namespace pertutils{
enum gamma_id {
ONE,
GX,
GY,
GZ,
GT,
G5,
CG5,
C,
IG4CG5,
PARPLUS,
PARMINUS,
};
enum basak_gamma_id {
UTRANS,
G1G1,
G1U1
};
enum polarization_id{
UPDOWNAV,
SING0,
TRIP0,
TRIPP1,
TRIPM1
};
Matrix<dcomplex> get_gamma(const gamma_id gid);
Matrix<double> get_gamma(const basak_gamma_id gid);
Matrix<double> get_polarization(const polarization_id gid);
}
#endif