| [68cb0f] | 1 | #ifndef PERIODENTAFEL_HPP_
 | 
|---|
 | 2 | #define PERIODENTAFEL_HPP_
 | 
|---|
 | 3 | 
 | 
|---|
| [f66195] | 4 | /*********************************************** includes ***********************************/
 | 
|---|
 | 5 | 
 | 
|---|
| [68cb0f] | 6 | // include config.h
 | 
|---|
 | 7 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 8 | #include <config.h>
 | 
|---|
 | 9 | #endif
 | 
|---|
 | 10 | 
 | 
|---|
| [986ed3] | 11 | #include <iosfwd>
 | 
|---|
| [ead4e6] | 12 | #include <map>
 | 
|---|
| [f308e6] | 13 | #include <string>
 | 
|---|
| [68cb0f] | 14 | 
 | 
|---|
| [e4fe8d] | 15 | #include "Helpers/defs.hpp"
 | 
|---|
| [ead4e6] | 16 | #include "types.hpp"
 | 
|---|
| [68cb0f] | 17 | 
 | 
|---|
| [b60804] | 18 | #include "boost/serialization/array.hpp"
 | 
|---|
 | 19 | #include "boost/serialization/map.hpp"
 | 
|---|
 | 20 | 
 | 
|---|
| [f66195] | 21 | /****************************************** forward declarations *****************************/
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | class element;
 | 
|---|
| [37ef6d] | 24 | class ion;
 | 
|---|
| [f66195] | 25 | 
 | 
|---|
 | 26 | /********************************************** declarations *******************************/
 | 
|---|
| [6ac7ee] | 27 | 
 | 
|---|
| [68cb0f] | 28 | 
 | 
|---|
 | 29 | /** Periodentafel is a list of all elements sorted by their atomic number.
 | 
|---|
 | 30 |  */
 | 
|---|
 | 31 | class periodentafel {
 | 
|---|
| [ead4e6] | 32 |   /******* Types *********/
 | 
|---|
| [4eb4fe] | 33 |   friend class periodentafelTest;
 | 
|---|
| [b60804] | 34 | private:
 | 
|---|
 | 35 |   typedef std::map<atomicNumber_t,element*> elementSet;
 | 
|---|
| [37ef6d] | 36 |   typedef std::map<int,ion*> ionSet;
 | 
|---|
 | 37 |   typedef std::map<atomicNumber_t,ionSet> IonsPerElement;
 | 
|---|
| [b60804] | 38 | public:
 | 
|---|
 | 39 |   typedef elementSet::iterator iterator;
 | 
|---|
 | 40 |   typedef elementSet::const_iterator const_iterator;
 | 
|---|
 | 41 |   typedef std::reverse_iterator<const_iterator> reverse_iterator;
 | 
|---|
 | 42 | 
 | 
|---|
 | 43 |   /******* Functions *********/
 | 
|---|
 | 44 | public:
 | 
|---|
| [4ae823] | 45 |   periodentafel(const bool DoLoad = false);
 | 
|---|
| [042f82] | 46 |   ~periodentafel();
 | 
|---|
| [6ac7ee] | 47 | 
 | 
|---|
| [e5c0a1] | 48 |   iterator AddElement(element * pointer);
 | 
|---|
 | 49 |   size_t RemoveElement(const element * pointer);
 | 
|---|
| [61745cc] | 50 |   size_t RemoveElement(atomicNumber_t);
 | 
|---|
| [ead4e6] | 51 |   void CleanupPeriodtable();
 | 
|---|
| [e5c0a1] | 52 |   const element * FindElement(atomicNumber_t) const;
 | 
|---|
| [37ef6d] | 53 |   const element * FindElement(atomicNumber_t, const int);
 | 
|---|
| [e5c0a1] | 54 |   const element * FindElement(const std::string &shorthand) const;
 | 
|---|
 | 55 |   const element * AskElement() const;
 | 
|---|
 | 56 |   const element * EnterElement();
 | 
|---|
 | 57 | 
 | 
|---|
 | 58 |   const_iterator begin() const;
 | 
|---|
 | 59 |   const_iterator end() const;
 | 
|---|
 | 60 |   reverse_iterator rbegin() const;
 | 
|---|
 | 61 |   reverse_iterator rend() const;
 | 
|---|
| [ead4e6] | 62 |   bool Output(std::ostream * const output) const;
 | 
|---|
| [47ed3d] | 63 |   void OutputElement(std::ostream * const output, const element *elem) const;
 | 
|---|
| [fb73b8] | 64 |   bool LoadPeriodentafel(const char * const path);
 | 
|---|
 | 65 |   bool StorePeriodentafel(const char * const path) const;
 | 
|---|
| [6ac7ee] | 66 | 
 | 
|---|
| [b60804] | 67 |   bool operator==(const periodentafel &other) const;
 | 
|---|
 | 68 | 
 | 
|---|
 | 69 |   bool operator!=(const periodentafel &other) const {
 | 
|---|
 | 70 |     return !(*this == other);
 | 
|---|
 | 71 |   }
 | 
|---|
| [4eb4fe] | 72 | 
 | 
|---|
| [b60804] | 73 | private:
 | 
|---|
 | 74 |   friend class boost::serialization::access;
 | 
|---|
 | 75 |   // serialization
 | 
|---|
 | 76 |   template<class Archive>
 | 
|---|
 | 77 |   void serialize(Archive & ar, const unsigned int version)
 | 
|---|
 | 78 |   {
 | 
|---|
 | 79 |     ar & boost::serialization::make_array<char>(header1, MAXSTRINGSIZE);
 | 
|---|
 | 80 |     ar & boost::serialization::make_array<char>(header2, MAXSTRINGSIZE);
 | 
|---|
 | 81 |     ar & elements;
 | 
|---|
| [37ef6d] | 82 |     ar & ions;
 | 
|---|
| [b60804] | 83 |   }
 | 
|---|
 | 84 | 
 | 
|---|
| [4ae823] | 85 |   void ScanPeriodentafel();
 | 
|---|
| [b60804] | 86 |   bool LoadColorDatabase(std::istream &input);
 | 
|---|
| [e5c0a1] | 87 |   bool LoadElementsDatabase(std::istream &input);
 | 
|---|
| [67c92b] | 88 |   bool LoadElectronegativityDatabase(std::istream &input);
 | 
|---|
 | 89 |   bool LoadValenceDatabase(std::istream &input);
 | 
|---|
 | 90 |   bool LoadOrbitalsDatabase(std::istream &input);
 | 
|---|
 | 91 |   bool LoadHBondAngleDatabase(std::istream &input);
 | 
|---|
 | 92 |   bool LoadHBondLengthsDatabase(std::istream &input);
 | 
|---|
| [4eb4fe] | 93 | 
 | 
|---|
| [b60804] | 94 |   /******* Variables *********/
 | 
|---|
 | 95 | private:
 | 
|---|
 | 96 |   char header1[MAXSTRINGSIZE]; //!< store first header line
 | 
|---|
 | 97 |   char header2[MAXSTRINGSIZE]; //!< store second header line
 | 
|---|
| [68cb0f] | 98 | 
 | 
|---|
| [b60804] | 99 |   elementSet elements;
 | 
|---|
| [37ef6d] | 100 |   IonsPerElement ions;
 | 
|---|
| [b60804] | 101 | };
 | 
|---|
| [68cb0f] | 102 | 
 | 
|---|
 | 103 | #endif /*PERIODENTAFEL_HPP_*/
 | 
|---|