]> www.ginac.de Git - ginac.git/blobdiff - ginac/clifford.h
Adapted to new version 1.2.5.
[ginac.git] / ginac / clifford.h
index efb813de48c053631541609f2ebcd69586d9d010..4f0bb6b7474756d033819bb264d582db3a2b5273 100644 (file)
@@ -3,7 +3,7 @@
  *  Interface to GiNaC's clifford objects. */
 
 /*
- *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2001 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
 #define __GINAC_CLIFFORD_H__
 
 #include <string>
-#include "indexed.h"
-#include "ex.h"
+#include "lortensor.h"
 
 #ifndef NO_NAMESPACE_GINAC
 namespace GiNaC {
 #endif // ndef NO_NAMESPACE_GINAC
 
-/** Base class for clifford object */
-class clifford : public indexed
+
+/** This class holds an object representing an element of the Clifford
+ *  algebra (the Dirac gamma matrices). These objects only carry Lorentz
+ *  indices. Spinor indices are always hidden in our implementation. */
+class clifford : public lortensor
 {
+       GINAC_DECLARE_REGISTERED_CLASS(clifford, lortensor)
+
+// friends
+
+       friend clifford clifford_gamma(const ex & mu);
+
 // member functions
 
        // default constructor, destructor, copy constructor assignment operator and helpers
@@ -48,7 +56,9 @@ protected:
 
        // other constructors
 public:
-       explicit clifford(const std::string & initname);
+       clifford(const std::string & n, const ex & mu);
+       clifford(const std::string & n, const exvector & iv);
+       clifford(const std::string & n, exvector * ivp);
 
        // functions overriding virtual functions from base classes
 public:
@@ -56,42 +66,38 @@ public:
        void printraw(std::ostream & os) const;
        void printtree(std::ostream & os, unsigned indent) const;
        void print(std::ostream & os, unsigned upper_precedence=0) const;
-       void printcsrc(std::ostream & os, unsigned type, unsigned upper_precedence=0) const;
        bool info(unsigned inf) const;
+       // ex eval(int level=0) const;
 protected:
        int compare_same_type(const basic & other) const;
+       bool is_equal_same_type(const basic & other) const;
        ex simplify_ncmul(const exvector & v) const;
-       unsigned calchash(void) const;
+       ex thisexprseq(const exvector & v) const;
+       ex thisexprseq(exvector * vp) const;
 
        // new virtual functions which can be overridden by derived classes
        // none
        
        // non-virtual functions in this class
-public:
-       void setname(const std::string & n);
-private:
-       std::string & autoname_prefix(void);
-
-// member variables
+       // none
 
-protected:
-       std::string name;
-       unsigned serial; // unique serial number for comparision
-private:
-       static unsigned next_serial;
+       // member variables
+       // none
 };
 
 // global constants
 
 extern const clifford some_clifford;
-extern const type_info & typeid_clifford;
+extern const std::type_info & typeid_clifford;
 
-// utility functions
+// global functions
 inline const clifford &ex_to_clifford(const ex &e)
 {
        return static_cast<const clifford &>(*e.bp);
 }
 
+clifford clifford_gamma(const ex & mu);
+
 #ifndef NO_NAMESPACE_GINAC
 } // namespace GiNaC
 #endif // ndef NO_NAMESPACE_GINAC