X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fisospin.cpp;h=0eefc1210e0faf21213ddc8ec55bd4626a6f241a;hp=672ea924bf81c60193cbbfb7769d8832a4b9be34;hb=ba0fa799375b03d3e8d512b0a6b2b6f1ef14e6e5;hpb=9eab44408b9213d8909b7a9e525f404ad06064dd diff --git a/ginac/isospin.cpp b/ginac/isospin.cpp index 672ea924..0eefc121 100644 --- a/ginac/isospin.cpp +++ b/ginac/isospin.cpp @@ -4,7 +4,7 @@ * No real implementation yet, to be done. */ /* - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2000 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 @@ -26,10 +26,16 @@ #include "isospin.h" #include "ex.h" #include "ncmul.h" +#include "lst.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(isospin, indexed) ////////// // default constructor, destructor, copy constructor assignment operator and helpers @@ -39,48 +45,48 @@ namespace GiNaC { isospin::isospin() { - debugmsg("isospin default constructor",LOGLEVEL_CONSTRUCT); - serial=next_serial++; - name=autoname_prefix()+ToString(serial); - tinfo_key=TINFO_isospin; + debugmsg("isospin default constructor",LOGLEVEL_CONSTRUCT); + serial=next_serial++; + name=autoname_prefix()+ToString(serial); + tinfo_key=TINFO_isospin; } isospin::~isospin() { - debugmsg("isospin destructor",LOGLEVEL_DESTRUCT); - destroy(0); + debugmsg("isospin destructor",LOGLEVEL_DESTRUCT); + destroy(false); } -isospin::isospin(isospin const & other) +isospin::isospin(const isospin & other) { - debugmsg("isospin copy constructor",LOGLEVEL_CONSTRUCT); - copy (other); + debugmsg("isospin copy constructor",LOGLEVEL_CONSTRUCT); + copy (other); } -isospin const & isospin::operator=(isospin const & other) +const isospin & isospin::operator=(const isospin & other) { - debugmsg("isospin operator=",LOGLEVEL_ASSIGNMENT); - if (this != &other) { - destroy(1); - copy(other); - } - return *this; + debugmsg("isospin operator=",LOGLEVEL_ASSIGNMENT); + if (this != &other) { + destroy(true); + copy(other); + } + return *this; } // protected -void isospin::copy(isospin const & other) +void isospin::copy(const isospin & other) { - indexed::copy(other); - name=other.name; - serial=other.serial; + inherited::copy(other); + name=other.name; + serial=other.serial; } void isospin::destroy(bool call_parent) { - if (call_parent) { - indexed::destroy(call_parent); - } + if (call_parent) { + inherited::destroy(call_parent); + } } ////////// @@ -89,12 +95,46 @@ void isospin::destroy(bool call_parent) // public -isospin::isospin(string const & initname) +isospin::isospin(const std::string & initname) +{ + debugmsg("isospin constructor from string",LOGLEVEL_CONSTRUCT); + name=initname; + serial=next_serial++; + tinfo_key=TINFO_isospin; +} + +////////// +// archiving +////////// + +/** Construct object from archive_node. */ +isospin::isospin(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst) { - debugmsg("isospin constructor from string",LOGLEVEL_CONSTRUCT); - name=initname; - serial=next_serial++; - tinfo_key=TINFO_isospin; + debugmsg("isospin constructor from archive_node", LOGLEVEL_CONSTRUCT); + serial = next_serial++; + if (!(n.find_string("name", name))) + name = autoname_prefix() + ToString(serial); + tinfo_key = TINFO_isospin; +} + +/** Unarchive the object. */ +ex isospin::unarchive(const archive_node &n, const lst &sym_lst) +{ + ex s = (new isospin(n, sym_lst))->setflag(status_flags::dynallocated); + + // If isospin is in sym_lst, return the existing isospin + for (unsigned i=0; i(&other); - if (serial==o->serial) { - return indexed::compare_same_type(other); - } - return serial < o->serial ? -1 : 1; + GINAC_ASSERT(other.tinfo() == TINFO_isospin); + const isospin *o = static_cast(&other); + if (serial==o->serial) { + return inherited::compare_same_type(other); + } + return serial < o->serial ? -1 : 1; } -ex isospin::simplify_ncmul(exvector const & v) const +ex isospin::simplify_ncmul(const exvector & v) const { - return simplified_ncmul(v); + return simplified_ncmul(v); } unsigned isospin::calchash(void) const { - hashvalue=golden_ratio_hash(golden_ratio_hash(0x55555556U ^ - golden_ratio_hash(tinfo_key) ^ - serial)); - setflag(status_flags::hash_calculated); - return hashvalue; + hashvalue = golden_ratio_hash(golden_ratio_hash(0x55555556U ^ + golden_ratio_hash(tinfo_key) ^ serial)); + setflag(status_flags::hash_calculated); + return hashvalue; } ////////// @@ -183,17 +223,17 @@ unsigned isospin::calchash(void) const // non-virtual functions in this class ////////// -void isospin::setname(string const & n) +void isospin::setname(const std::string & n) { - name=n; + name = n; } // private -string & isospin::autoname_prefix(void) +std::string & isospin::autoname_prefix(void) { - static string * s=new string("isospin"); - return *s; + static std::string * s = new std::string("isospin"); + return *s; } ////////// @@ -209,6 +249,9 @@ unsigned isospin::next_serial=0; ////////// const isospin some_isospin; -type_info const & typeid_isospin=typeid(some_isospin); +const std::type_info & typeid_isospin = typeid(some_isospin); +#ifndef NO_NAMESPACE_GINAC } // namespace GiNaC +#endif // ndef NO_NAMESPACE_GINAC +