[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 |
|
---|
[cd4ccc] | 11 | #include <iostream>
|
---|
[ead4e6] | 12 | #include <map>
|
---|
| 13 | #include <iterator>
|
---|
[68cb0f] | 14 |
|
---|
[4eb4fe] | 15 | #include "unittests/periodentafelTest.hpp"
|
---|
[cd4ccc] | 16 | #include "defs.hpp"
|
---|
[ead4e6] | 17 | #include "types.hpp"
|
---|
[68cb0f] | 18 |
|
---|
[f66195] | 19 | /****************************************** forward declarations *****************************/
|
---|
| 20 |
|
---|
| 21 | class element;
|
---|
| 22 |
|
---|
| 23 | /********************************************** declarations *******************************/
|
---|
[6ac7ee] | 24 |
|
---|
[68cb0f] | 25 |
|
---|
| 26 | /** Periodentafel is a list of all elements sorted by their atomic number.
|
---|
| 27 | */
|
---|
| 28 | class periodentafel {
|
---|
[ead4e6] | 29 | /******* Types *********/
|
---|
[4eb4fe] | 30 | friend class periodentafelTest;
|
---|
[ead4e6] | 31 | private:
|
---|
| 32 | typedef std::map<atomicNumber_t,element*> elementSet;
|
---|
| 33 | public:
|
---|
| 34 | typedef elementSet::iterator iterator;
|
---|
| 35 | typedef elementSet::const_iterator const_iterator;
|
---|
| 36 | typedef std::reverse_iterator<const_iterator> reverse_iterator;
|
---|
[042f82] | 37 | public:
|
---|
[ead4e6] | 38 |
|
---|
[042f82] | 39 | char header1[MAXSTRINGSIZE]; //!< store first header line
|
---|
| 40 | char header2[MAXSTRINGSIZE]; //!< store second header line
|
---|
[6ac7ee] | 41 |
|
---|
[042f82] | 42 | periodentafel();
|
---|
| 43 | ~periodentafel();
|
---|
[6ac7ee] | 44 |
|
---|
[ead4e6] | 45 | iterator AddElement(element * const pointer);
|
---|
| 46 | void RemoveElement(element * const pointer);
|
---|
[4eb4fe] | 47 | void RemoveElement(atomicNumber_t);
|
---|
[ead4e6] | 48 | void CleanupPeriodtable();
|
---|
[4eb4fe] | 49 | element * const FindElement(atomicNumber_t) const;
|
---|
| 50 | element * const FindElement(const char * const shorthand) const;
|
---|
| 51 | element * const AskElement() const;
|
---|
| 52 | element * const EnterElement();
|
---|
[ead4e6] | 53 |
|
---|
| 54 | const_iterator begin();
|
---|
| 55 | const_iterator end();
|
---|
| 56 | reverse_iterator rbegin();
|
---|
| 57 | reverse_iterator rend();
|
---|
| 58 | bool Output(std::ostream * const output) const;
|
---|
| 59 | bool Checkout(std::ostream * const output, const int * const checkliste) const;
|
---|
[fb73b8] | 60 | bool LoadPeriodentafel(const char * const path);
|
---|
| 61 | bool StorePeriodentafel(const char * const path) const;
|
---|
[6ac7ee] | 62 |
|
---|
[042f82] | 63 | private:
|
---|
[4eb4fe] | 64 |
|
---|
| 65 | bool LoadElementsDatabase(std::istream *input);
|
---|
| 66 | bool LoadValenceDatabase(std::istream *input);
|
---|
| 67 | bool LoadOrbitalsDatabase(std::istream *input);
|
---|
| 68 | bool LoadHBondAngleDatabase(std::istream *input);
|
---|
| 69 | bool LoadHBondLengthsDatabase(std::istream *input);
|
---|
| 70 |
|
---|
[ead4e6] | 71 | elementSet elements;
|
---|
[68cb0f] | 72 | };
|
---|
| 73 |
|
---|
| 74 |
|
---|
| 75 | #endif /*PERIODENTAFEL_HPP_*/
|
---|