/** @file lorentzidx.cpp * * Implementation of GiNaC's Lorentz indices. */ /* * 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 * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include "lorentzidx.h" #include "lst.h" #include "symbol.h" #include "archive.h" #include "utils.h" #include "debugmsg.h" #ifndef NO_NAMESPACE_GINAC namespace GiNaC { #endif // ndef NO_NAMESPACE_GINAC GINAC_IMPLEMENT_REGISTERED_CLASS(lorentzidx, idx) ////////// // default constructor, destructor, copy constructor assignment operator and helpers ////////// // public lorentzidx::lorentzidx() : orthogonal_only(false), dim_parallel_space(0) { debugmsg("lorentzidx default constructor",LOGLEVEL_CONSTRUCT); // serial is incremented in idx::idx() name = "mu" + ToString(serial); tinfo_key = TINFO_lorentzidx; } // protected void lorentzidx::copy(const lorentzidx & other) { inherited::copy(other); orthogonal_only=other.orthogonal_only; dim_parallel_space=other.dim_parallel_space; } void lorentzidx::destroy(bool call_parent) { if (call_parent) inherited::destroy(call_parent); } ////////// // other constructors ////////// // public /** Construct symbolic Lorentz index, using an automatically generated unique name. * * @param cov Index is covariant (contravariant otherwise) * @param oonly Index only lives in orthogonal space * @param dimp Dimension of parallel space * @return newly constructed index */ lorentzidx::lorentzidx(bool cov, bool oonly, unsigned dimp) : idx(cov), orthogonal_only(oonly), dim_parallel_space(dimp) { debugmsg("lorentzidx constructor from bool,bool,unsigned",LOGLEVEL_CONSTRUCT); // serial is incremented in idx::idx(bool) if (oonly) { name="muorth"+ToString(serial); } else { name="mu"+ToString(serial); } tinfo_key=TINFO_lorentzidx; } /** Construct symbolic Lorentz index with specified name. * * @param n Symbolic index name * @param cov Index is covariant (contravariant otherwise) * @param oonly Index only lives in orthogonal space * @param dimp Dimension of parallel space * @return newly constructed index */ lorentzidx::lorentzidx(const std::string & n, bool cov, bool oonly, unsigned dimp) : idx(n,cov), orthogonal_only(oonly), dim_parallel_space(dimp) { debugmsg("lorentzidx constructor from string,bool,bool,unsigned", LOGLEVEL_CONSTRUCT); tinfo_key=TINFO_lorentzidx; } /** Construct symbolic Lorentz index with specified name. * * @param n Symbolic index name * @param cov Index is covariant (contravariant otherwise) * @param oonly Index only lives in orthogonal space * @param dimp Dimension of parallel space * @return newly constructed index */ lorentzidx::lorentzidx(const char * n, bool cov, bool oonly, unsigned dimp) : idx(n,cov), orthogonal_only(oonly), dim_parallel_space(dimp) { debugmsg("lorentzidx constructor from char*,bool,bool,unsigned", LOGLEVEL_CONSTRUCT); tinfo_key=TINFO_lorentzidx; } /** Construct numeric Lorentz index with specified value. * * @param v Numeric index value * @param cov Index is covariant (contravariant otherwise) * @return newly constructed index */ lorentzidx::lorentzidx(unsigned v, bool cov) : idx(v,cov), orthogonal_only(false), dim_parallel_space(0) { debugmsg("lorentzidx constructor from unsigned,bool",LOGLEVEL_CONSTRUCT); tinfo_key=TINFO_lorentzidx; } ////////// // archiving ////////// /** Construct object from archive_node. */ lorentzidx::lorentzidx(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst) { debugmsg("lorentzidx constructor from archive_node", LOGLEVEL_CONSTRUCT); n.find_bool("orthogonal_only", orthogonal_only); n.find_unsigned("pdim", dim_parallel_space); } /** Unarchive the object. */ ex lorentzidx::unarchive(const archive_node &n, const lst &sym_lst) { ex s = (new lorentzidx(n, sym_lst))->setflag(status_flags::dynallocated); if (ex_to_lorentzidx(s).symbolic) { // If lorentzidx is in sym_lst, return the existing lorentzidx for (unsigned i=0; i(other); if (orthogonal_only != o.orthogonal_only) return orthogonal_only ? -1 : 1; if (dim_parallel_space != o.dim_parallel_space) return dim_parallel_space < o.dim_parallel_space ? -1 : 1; return inherited::compare_same_type(other); } ////////// // non-virtual functions in this class ////////// // public /** Create anonymous contravariant copy of a symbolic Lorentz index. */ lorentzidx lorentzidx::create_anonymous_representative(void) const { GINAC_ASSERT(is_symbolic()); lorentzidx i_copy(*this); i_copy.serial=0; i_copy.name="anonymous_representative"; i_copy.covariant=false; i_copy.clearflag(status_flags::dynallocated | status_flags::hash_calculated); return i_copy; } ////////// // global functions ////////// /** Return the global symbol that represents the dimension D of spacetime. */ ex Dim(void) { static symbol *d = new symbol("dim"); return *d; } #ifndef NO_NAMESPACE_GINAC } // namespace GiNaC #endif // ndef NO_NAMESPACE_GINAC