]> www.ginac.de Git - ginac.git/blobdiff - ginac/clifford.h
- prepared for 1.0.13 release
[ginac.git] / ginac / clifford.h
index 50a0c70cdaa64b96fb68d7322b5b641c39a0a9ea..ce5d2acfd50a6b3430d5717c9aa125389d19f3fc 100644 (file)
@@ -3,7 +3,7 @@
  *  Interface to GiNaC's clifford algebra (Dirac gamma) objects. */
 
 /*
- *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -52,8 +52,8 @@ public:
        void print(const print_context & c, unsigned level = 0) const;
 
 protected:
-       bool match_same_type(const basic & other) const;
        ex simplify_ncmul(const exvector & v) const;
+       bool match_same_type(const basic & other) const;
        ex thisexprseq(const exvector & v) const;
        ex thisexprseq(exvector * vp) const;
        unsigned return_type(void) const { return return_types::noncommutative; }
@@ -104,14 +104,31 @@ public:
 };
 
 
-// global functions
+/** This class represents the Dirac gammaL object which behaves like
+ *  1/2 (1-gamma5). */
+class diracgammaL : public tensor
+{
+       GINAC_DECLARE_REGISTERED_CLASS(diracgammaL, tensor)
+
+       // functions overriding virtual functions from base classes
+public:
+       void print(const print_context & c, unsigned level = 0) const;
+};
 
-/** Return the clifford object handled by an ex.  Deprecated: use ex_to<clifford>().
- *  This is unsafe: you need to check the type first. */
-inline const clifford &ex_to_clifford(const ex &e)
+
+/** This class represents the Dirac gammaL object which behaves like
+ *  1/2 (1+gamma5). */
+class diracgammaR : public tensor
 {
-       return static_cast<const clifford &>(*e.bp);
-}
+       GINAC_DECLARE_REGISTERED_CLASS(diracgammaR, tensor)
+
+       // functions overriding virtual functions from base classes
+public:
+       void print(const print_context & c, unsigned level = 0) const;
+};
+
+
+// global functions
 
 /** Specialization of is_exactly_a<clifford>(obj) for clifford objects. */
 template<> inline bool is_exactly_a<clifford>(const basic & obj)
@@ -138,10 +155,20 @@ ex dirac_gamma(const ex & mu, unsigned char rl = 0);
  *  @return newly constructed object */
 ex dirac_gamma5(unsigned char rl = 0);
 
-/** This returns (dirac_ONE(rl) + dirac_gamma5(rl)). */
-ex dirac_gamma6(unsigned char rl = 0);
+/** Create a Dirac gammaL object.
+ *
+ *  @param rl Representation label
+ *  @return newly constructed object */
+ex dirac_gammaL(unsigned char rl = 0);
 
-/** This returns (dirac_ONE(rl) - dirac_gamma5(rl)). */
+/** Create a Dirac gammaR object.
+ *
+ *  @param rl Representation label
+ *  @return newly constructed object */
+ex dirac_gammaR(unsigned char rl = 0);
+
+// These functions are deprecated. Use dirac_gammaL/R() instead.
+ex dirac_gamma6(unsigned char rl = 0);
 ex dirac_gamma7(unsigned char rl = 0);
 
 /** Create a term of the form e_mu * gamma~mu with a unique index mu.