]> www.ginac.de Git - ginac.git/blob - ginac/clifford.h
* mul::expand() (mul.cpp): When multiplying two sums, be careful not to
[ginac.git] / ginac / clifford.h
1 /** @file clifford.h
2  *
3  *  Interface to GiNaC's clifford algebra (Dirac gamma) objects. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #ifndef __GINAC_CLIFFORD_H__
24 #define __GINAC_CLIFFORD_H__
25
26 #include "indexed.h"
27 #include "tensor.h"
28
29 namespace GiNaC {
30
31
32 /** This class holds an object representing an element of the Clifford
33  *  algebra (the Dirac gamma matrices). These objects only carry Lorentz
34  *  indices. Spinor indices are hidden. A representation label (an unsigned
35  *  8-bit integer) is used to distinguish elements from different Clifford
36  *  algebras (objects with different labels commute). */
37 class clifford : public indexed
38 {
39         GINAC_DECLARE_REGISTERED_CLASS(clifford, indexed)
40
41         // other constructors
42 public:
43         clifford(const ex & b, unsigned char rl = 0);
44         clifford(const ex & b, const ex & mu, unsigned char rl = 0);
45
46         // internal constructors
47         clifford(unsigned char rl, const exvector & v, bool discardable = false);
48         clifford(unsigned char rl, exvector * vp); // vp will be deleted
49
50         // functions overriding virtual functions from base classes
51 public:
52         void print(const print_context & c, unsigned level = 0) const;
53
54 protected:
55         bool match_same_type(const basic & other) const;
56         ex simplify_ncmul(const exvector & v) const;
57         ex thisexprseq(const exvector & v) const;
58         ex thisexprseq(exvector * vp) const;
59         unsigned return_type(void) const { return return_types::noncommutative; }
60         unsigned return_type_tinfo(void) const { return TINFO_clifford + representation_label; }
61
62         // non-virtual functions in this class
63 public:
64         unsigned char get_representation_label(void) const {return representation_label;}
65
66         // member variables
67 private:
68         unsigned char representation_label; /**< Representation label to distinguish independent spin lines */
69 };
70
71
72 /** This class represents the Clifford algebra unity element. */
73 class diracone : public tensor
74 {
75         GINAC_DECLARE_REGISTERED_CLASS(diracone, tensor)
76
77         // functions overriding virtual functions from base classes
78 public:
79         void print(const print_context & c, unsigned level = 0) const;
80 };
81
82
83 /** This class represents the Dirac gamma Lorentz vector. */
84 class diracgamma : public tensor
85 {
86         GINAC_DECLARE_REGISTERED_CLASS(diracgamma, tensor)
87
88         // functions overriding virtual functions from base classes
89 public:
90         void print(const print_context & c, unsigned level = 0) const;
91         bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const;
92 };
93
94
95 /** This class represents the Dirac gamma5 object which anticommutes with
96  *  all other gammas. */
97 class diracgamma5 : public tensor
98 {
99         GINAC_DECLARE_REGISTERED_CLASS(diracgamma5, tensor)
100
101         // functions overriding virtual functions from base classes
102 public:
103         void print(const print_context & c, unsigned level = 0) const;
104 };
105
106
107 // global functions
108
109 /** Specialization of is_exactly_a<clifford>(obj) for clifford objects. */
110 template<> inline bool is_exactly_a<clifford>(const basic & obj)
111 {
112         return obj.tinfo()==TINFO_clifford;
113 }
114
115 /** Create a Clifford unity object.
116  *
117  *  @param rl Representation label
118  *  @return newly constructed object */
119 ex dirac_ONE(unsigned char rl = 0);
120
121 /** Create a Dirac gamma object.
122  *
123  *  @param mu Index (must be of class varidx or a derived class)
124  *  @param rl Representation label
125  *  @return newly constructed gamma object */
126 ex dirac_gamma(const ex & mu, unsigned char rl = 0);
127
128 /** Create a Dirac gamma5 object.
129  *
130  *  @param rl Representation label
131  *  @return newly constructed object */
132 ex dirac_gamma5(unsigned char rl = 0);
133
134 /** This returns (dirac_ONE(rl) + dirac_gamma5(rl)). */
135 ex dirac_gamma6(unsigned char rl = 0);
136
137 /** This returns (dirac_ONE(rl) - dirac_gamma5(rl)). */
138 ex dirac_gamma7(unsigned char rl = 0);
139
140 /** Create a term of the form e_mu * gamma~mu with a unique index mu.
141  *
142  *  @param dim Dimension of index
143  *  @param rl Representation label */
144 ex dirac_slash(const ex & e, const ex & dim, unsigned char rl = 0);
145
146 /** Calculate the trace of an expression containing gamma objects with
147  *  a specified representation label. The computed trace is a linear
148  *  functional that is equal to the usual trace only in D = 4 dimensions.
149  *  In particular, the functional is not always cyclic in D != 4 dimensions
150  *  when gamma5 is involved.
151  *
152  *  @param e Expression to take the trace of
153  *  @param rl Representation label
154  *  @param trONE Expression to be returned as the trace of the unit matrix */
155 ex dirac_trace(const ex & e, unsigned char rl = 0, const ex & trONE = 4);
156
157 /** Bring all products of clifford objects in an expression into a canonical
158  *  order. This is not necessarily the most simple form but it will allow
159  *  to check two expressions for equality. */
160 ex canonicalize_clifford(const ex & e);
161
162 } // namespace GiNaC
163
164 #endif // ndef __GINAC_CLIFFORD_H__