Changes in / [1cc87e:353e82]
- Location:
- src
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/AnalysisAction/PairCorrelationAction.cpp
r1cc87e r353e82 75 75 ofstream output; 76 76 ofstream binoutput; 77 std::vector< element *> elements;77 std::vector<const element *> elements; 78 78 string type; 79 79 Vector Point; -
src/Actions/AnalysisAction/PointCorrelationAction.cpp
r1cc87e r353e82 76 76 ofstream output; 77 77 ofstream binoutput; 78 std::vector< element *> elements;78 std::vector<const element *> elements; 79 79 string type; 80 80 Vector Point; … … 96 96 cout << "Point to correlate to is " << Point << endl; 97 97 CorrelationToPointMap *correlationmap = NULL; 98 for(std::vector< element *>::iterator iter = elements.begin(); iter != elements.end(); ++iter)99 cout << "element is " << (*iter)-> symbol<< endl;98 for(std::vector<const element *>::iterator iter = elements.begin(); iter != elements.end(); ++iter) 99 cout << "element is " << (*iter)->getSymbol() << endl; 100 100 std::vector<molecule*> molecules = World::getInstance().getSelectedMolecules(); 101 101 if (periodic) -
src/Actions/AnalysisAction/SurfaceCorrelationAction.cpp
r1cc87e r353e82 79 79 ofstream output; 80 80 ofstream binoutput; 81 std::vector< element *> elements;81 std::vector<const element *> elements; 82 82 string type; 83 83 Vector Point; -
src/Actions/AtomAction/AddAction.cpp
r1cc87e r353e82 52 52 53 53 Action::state_ptr AtomAddAction::performCall() { 54 element * elemental = NULL;54 const element * elemental = NULL; 55 55 Vector position; 56 56 … … 63 63 first->setType(elemental); 64 64 first->setPosition(position); 65 DoLog(1) && (Log() << Verbose(1) << "Adding new atom with element " << first->getType()-> name<< " at " << (first->getPosition()) << "." << endl);65 DoLog(1) && (Log() << Verbose(1) << "Adding new atom with element " << first->getType()->getName() << " at " << (first->getPosition()) << "." << endl); 66 66 // TODO: remove when all of World's atoms are stored. 67 67 std::vector<molecule *> molecules = World::getInstance().getAllMolecules(); -
src/Actions/AtomAction/ChangeElementAction.cpp
r1cc87e r353e82 51 51 Action::state_ptr AtomChangeElementAction::performCall() { 52 52 atom *first = NULL; 53 element *elemental = NULL;53 const element *elemental; 54 54 molecule *mol = NULL; 55 55 … … 58 58 for (World::AtomSelectionIterator iter = World::getInstance().beginAtomSelection(); iter != World::getInstance().endAtomSelection(); ++iter) { 59 59 first = iter->second; 60 DoLog(1) && (Log() << Verbose(1) << "Changing atom " << *first << " to element " << elemental->symbol << "." << endl);60 DoLog(1) && (Log() << Verbose(1) << "Changing atom " << *first << " to element " << *elemental << "." << endl); 61 61 mol = first->getMolecule(); 62 62 first->removeFromMolecule(); // remove atom -
src/Actions/MapOfActions.cpp
r1cc87e r353e82 315 315 316 316 // value types for the actions 317 TypeMap["add-atom"] = &typeid( element);317 TypeMap["add-atom"] = &typeid(const element); 318 318 TypeMap["bond-file"] = &typeid(std::string); 319 319 TypeMap["bond-table"] = &typeid(std::string); … … 321 321 TypeMap["center-in-box"] = &typeid(BoxValue); 322 322 TypeMap["change-box"] = &typeid(BoxValue); 323 TypeMap["change-element"] = &typeid( element);323 TypeMap["change-element"] = &typeid(const element); 324 324 TypeMap["change-molname"] = &typeid(std::string); 325 325 TypeMap["clear-atom-selection"] = &typeid(void); … … 386 386 TypeMap["distances"] = &typeid(VectorValue); 387 387 TypeMap["DoRotate"] = &typeid(bool); 388 TypeMap["element"] = &typeid( element);389 TypeMap["elements"] = &typeid(std::vector< element *>);388 TypeMap["element"] = &typeid(const element); 389 TypeMap["elements"] = &typeid(std::vector<const element *>); 390 390 TypeMap["end-step"] = &typeid(int); 391 391 TypeMap["id-mapping"] = &typeid(bool); … … 416 416 TypeEnumMap[&typeid(atom)] = Atom; 417 417 TypeEnumMap[&typeid(std::vector<atom *>)] = ListOfAtoms; 418 TypeEnumMap[&typeid( element)] = Element;419 TypeEnumMap[&typeid(std::vector< element *>)] = ListOfElements;418 TypeEnumMap[&typeid(const element)] = Element; 419 TypeEnumMap[&typeid(std::vector<const element *>)] = ListOfElements; 420 420 421 421 // default values for any action that needs one (always string!) … … 622 622 } 623 623 624 void MapOfActions::queryCurrentValue(const char * name, c lasselement * &_T) {624 void MapOfActions::queryCurrentValue(const char * name, const element * &_T) { 625 625 int Z = -1; 626 if (typeid( element ) == *TypeMap[name]) {626 if (typeid(const element ) == *TypeMap[name]) { 627 627 if (CurrentValue.find(name) == CurrentValue.end()) 628 628 throw MissingValueException(__FILE__, __LINE__); … … 706 706 } 707 707 708 void MapOfActions::queryCurrentValue(const char * name, std::vector< element *>&_T)708 void MapOfActions::queryCurrentValue(const char * name, std::vector<const element *>&_T) 709 709 { 710 710 int Z = -1; 711 element *elemental = NULL;712 if (typeid( std::vector< element *> ) == *TypeMap[name]) {711 const element *elemental = NULL; 712 if (typeid( std::vector<const element *> ) == *TypeMap[name]) { 713 713 if (CurrentValue.find(name) == CurrentValue.end()) 714 714 throw MissingValueException(__FILE__, __LINE__); … … 758 758 } 759 759 760 void MapOfActions::setCurrentValue(const char * name, c lasselement * &_T)761 { 762 if (typeid( element ) == *TypeMap[name]) {760 void MapOfActions::setCurrentValue(const char * name, const element * &_T) 761 { 762 if (typeid(const element ) == *TypeMap[name]) { 763 763 std::ostringstream stream; 764 764 stream << _T->Z; … … 818 818 } 819 819 820 void MapOfActions::setCurrentValue(const char * name, std::vector< element *>&_T)821 { 822 if (typeid( std::vector< element *> ) == *TypeMap[name]) {820 void MapOfActions::setCurrentValue(const char * name, std::vector<const element *>&_T) 821 { 822 if (typeid( std::vector<const element *> ) == *TypeMap[name]) { 823 823 std::ostringstream stream; 824 for (std::vector< element *>::iterator iter = _T.begin(); iter != _T.end(); ++iter) {824 for (std::vector<const element *>::iterator iter = _T.begin(); iter != _T.end(); ++iter) { 825 825 stream << (*iter)->Z << " "; 826 826 } -
src/Actions/MapOfActions.hpp
r1cc87e r353e82 164 164 165 165 void queryCurrentValue(const char * name, class atom * &_T); 166 void queryCurrentValue(const char * name, c lasselement * &_T);166 void queryCurrentValue(const char * name, const element * &_T); 167 167 void queryCurrentValue(const char * name, class molecule * &_T); 168 168 void queryCurrentValue(const char * name, class Box &_T); 169 169 void queryCurrentValue(const char * name, class Vector &_T); 170 170 void queryCurrentValue(const char * name, std::vector<atom *>&_T); 171 void queryCurrentValue(const char * name, std::vector< element *>&_T);171 void queryCurrentValue(const char * name, std::vector<const element *>&_T); 172 172 void queryCurrentValue(const char * name, std::vector<molecule *>&_T); 173 173 template<typename T> void queryCurrentValue(const char * name, T &_T) … … 198 198 199 199 void setCurrentValue(const char * name, class atom * &_T); 200 void setCurrentValue(const char * name, c lasselement * &_T);200 void setCurrentValue(const char * name, const element * &_T); 201 201 void setCurrentValue(const char * name, class molecule * &_T); 202 202 void setCurrentValue(const char * name, class Box &_T); 203 203 void setCurrentValue(const char * name, class Vector &_T); 204 204 void setCurrentValue(const char * name, std::vector<atom *>&_T); 205 void setCurrentValue(const char * name, std::vector< element *>&_T);205 void setCurrentValue(const char * name, std::vector<const element *>&_T); 206 206 void setCurrentValue(const char * name, std::vector<molecule *>&_T); 207 207 template<class T> void setCurrentValue(const char * name, T &_T) -
src/Formula.cpp
r1cc87e r353e82 47 47 for(const_iterator iter=end();iter!=begin();){ 48 48 --iter; 49 sstr << (*iter).first-> symbol;49 sstr << (*iter).first->getSymbol(); 50 50 if((*iter).second>1) 51 51 sstr << (*iter).second; … … 146 146 147 147 bool Formula::hasElement(const string &shorthand) const{ 148 element * element = World::getInstance().getPeriode()->FindElement(shorthand);148 const element * element = World::getInstance().getPeriode()->FindElement(shorthand); 149 149 return hasElement(element); 150 150 } … … 167 167 168 168 void Formula::operator+=(const string &shorthand){ 169 element * element = World::getInstance().getPeriode()->FindElement(shorthand);169 const element * element = World::getInstance().getPeriode()->FindElement(shorthand); 170 170 operator+=(element); 171 171 } … … 198 198 199 199 void Formula::operator-=(const string &shorthand){ 200 element * element = World::getInstance().getPeriode()->FindElement(shorthand);200 const element * element = World::getInstance().getPeriode()->FindElement(shorthand); 201 201 operator-=(element); 202 202 } … … 220 220 221 221 void Formula::addElements(const string &shorthand,unsigned int count){ 222 element * element = World::getInstance().getPeriode()->FindElement(shorthand);222 const element * element = World::getInstance().getPeriode()->FindElement(shorthand); 223 223 addElements(element,count); 224 224 } … … 252 252 253 253 const unsigned int Formula::operator[](string shorthand) const{ 254 element * element = World::getInstance().getPeriode()->FindElement(shorthand);254 const element * element = World::getInstance().getPeriode()->FindElement(shorthand); 255 255 return operator[](element); 256 256 } … … 380 380 result_type 381 381 Formula::_iterator<result_type>::operator*(){ 382 element *element = World::getInstance().getPeriode()->FindElement(pos+1);382 const element *element = World::getInstance().getPeriode()->FindElement(pos+1); 383 383 ASSERT(element,"Element with position of iterator not found"); 384 384 return make_pair(element,(*set)[pos]); … … 390 390 // no one can keep this value around, so a static is ok to avoid temporaries 391 391 static value_type value=make_pair(reinterpret_cast<element*>(0),0); // no default constructor for std::pair 392 element *element = World::getInstance().getPeriode()->FindElement(pos+1);392 const element *element = World::getInstance().getPeriode()->FindElement(pos+1); 393 393 ASSERT(element,"Element with position of iterator not found"); 394 394 value = make_pair(element,(*set)[pos]); -
src/Parser/PcpParser.cpp
r1cc87e r353e82 540 540 const element * const elemental = World::getInstance().getPeriode()->FindElement(iter->first); 541 541 ZtoIndexMap.insert( pair<int,int> (iter->first, counter) ); 542 *file << "Ion_Type" << counter++ << "\t" << iter->second << "\t" << elemental->Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << elemental->mass << "\t" << elemental-> name << "\t" << elemental->symbol<<endl;542 *file << "Ion_Type" << counter++ << "\t" << iter->second << "\t" << elemental->Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << elemental->mass << "\t" << elemental->getName() << "\t" << elemental->getSymbol() <<endl; 543 543 } 544 544 } -
src/Parser/XyzParser.cpp
r1cc87e r353e82 86 86 vector<atom*> atoms = World::getInstance().getAllAtoms(); 87 87 for(vector<atom*>::iterator it = atoms.begin(); it != atoms.end(); it++) { 88 *file << noshowpoint << (*it)->getType()-> symbol<< "\t" << (*it)->at(0) << "\t" << (*it)->at(1) << "\t" << (*it)->at(2) << endl;88 *file << noshowpoint << (*it)->getType()->getSymbol() << "\t" << (*it)->at(0) << "\t" << (*it)->at(1) << "\t" << (*it)->at(2) << endl; 89 89 } 90 90 } -
src/UIElements/Dialog.hpp
r1cc87e r353e82 255 255 virtual void setResult(); 256 256 protected: 257 element * tmp;257 const element * tmp; 258 258 }; 259 259 … … 265 265 virtual void setResult(); 266 266 protected: 267 element *temp;268 std::vector< element *> tmp;267 const element *temp; 268 std::vector<const element *> tmp; 269 269 }; 270 270 -
src/UIElements/QT4/QTDialog.cpp
r1cc87e r353e82 554 554 { 555 555 stringstream sstr; 556 sstr << (*iter).first << "\t" << (*iter).second-> name;556 sstr << (*iter).first << "\t" << (*iter).second->getName(); 557 557 inputBox->addItem(QString(sstr.str().c_str()),QVariant((*iter).first)); 558 558 } … … 589 589 { 590 590 stringstream sstr; 591 sstr << (*iter).first << "\t" << (*iter).second-> name;591 sstr << (*iter).first << "\t" << (*iter).second->getName(); 592 592 inputBox->addItem(QString(sstr.str().c_str()),QVariant((*iter).first)); 593 593 } … … 816 816 } 817 817 818 ElementQTQueryPipe::ElementQTQueryPipe( element **_content, QTDialog *_dialog, QComboBox *_theBox) :818 ElementQTQueryPipe::ElementQTQueryPipe(const element **_content, QTDialog *_dialog, QComboBox *_theBox) : 819 819 content(_content), 820 820 dialog(_dialog), … … 832 832 } 833 833 834 ElementsQTQueryPipe::ElementsQTQueryPipe(std::vector< element *>*_content, QTDialog *_dialog, QComboBox *_theBox) :834 ElementsQTQueryPipe::ElementsQTQueryPipe(std::vector<const element *>*_content, QTDialog *_dialog, QComboBox *_theBox) : 835 835 content(_content), 836 836 dialog(_dialog), … … 844 844 QVariant data = theBox->itemData(newIndex); 845 845 int idx = data.toInt(); 846 element *elemental = World::getInstance().getPeriode()->FindElement(idx);846 const element *elemental = World::getInstance().getPeriode()->FindElement(idx); 847 847 if(elemental) 848 848 (*content).push_back(elemental); -
src/UIElements/QT4/QTDialog.hpp
r1cc87e r353e82 451 451 Q_OBJECT 452 452 public: 453 ElementQTQueryPipe( element **_content, QTDialog *_dialog, QComboBox *_theBox);453 ElementQTQueryPipe(const element **_content, QTDialog *_dialog, QComboBox *_theBox); 454 454 virtual ~ElementQTQueryPipe(); 455 455 … … 458 458 459 459 private: 460 element **content;460 const element **content; 461 461 QTDialog *dialog; 462 462 QComboBox *theBox; … … 466 466 Q_OBJECT 467 467 public: 468 ElementsQTQueryPipe(std::vector< element *>*_content, QTDialog *_dialog, QComboBox *_theBox);468 ElementsQTQueryPipe(std::vector<const element *>*_content, QTDialog *_dialog, QComboBox *_theBox); 469 469 virtual ~ElementsQTQueryPipe(); 470 470 … … 473 473 474 474 private: 475 std::vector< element *>*content;475 std::vector<const element *>*content; 476 476 QTDialog *dialog; 477 477 QComboBox *theBox; -
src/UIElements/TextUI/TextDialog.cpp
r1cc87e r353e82 569 569 bool badInput=false; 570 570 bool aborted = false; 571 element * temp = NULL;571 const element * temp = NULL; 572 572 do{ 573 573 badInput = false; -
src/analysis_bonds.cpp
r1cc87e r353e82 215 215 if (((OtherAtom->getType() == first) || (OtherAtom->getType() == second)) && (theAtom->nr < OtherAtom->nr)) { 216 216 count++; 217 DoLog(1) && (Log() << Verbose(1) << first->name << "-" << second->name<< " bond found between " << *Walker << " and " << *OtherAtom << "." << endl);217 DoLog(1) && (Log() << Verbose(1) << *first << "-" << *second << " bond found between " << *Walker << " and " << *OtherAtom << "." << endl); 218 218 } 219 219 } … … 262 262 if (result) { // check results 263 263 count++; 264 DoLog(1) && (Log() << Verbose(1) << first->name << "-" << second->name << "-" << third->name<< " bond found at " << *Walker << "." << endl);264 DoLog(1) && (Log() << Verbose(1) << *first << "-" << *second << "-" << *third << " bond found at " << *Walker << "." << endl); 265 265 } 266 266 } -
src/analysis_correlation.cpp
r1cc87e r353e82 33 33 * \return Map of doubles with values the pair of the two atoms. 34 34 */ 35 PairCorrelationMap *PairCorrelation(std::vector<molecule *> &molecules, const std::vector< element *> &elements)35 PairCorrelationMap *PairCorrelation(std::vector<molecule *> &molecules, const std::vector<const element *> &elements) 36 36 { 37 37 Info FunctionInfo(__func__); … … 48 48 49 49 // create all possible pairs of elements 50 set <pair< element *,element *> > PairsOfElements;50 set <pair<const element *,const element *> > PairsOfElements; 51 51 if (elements.size() >= 2) { 52 for (vector< element *>::const_iterator type1 = elements.begin(); type1 != elements.end(); ++type1)53 for (vector< element *>::const_iterator type2 = elements.begin(); type2 != elements.end(); ++type2)52 for (vector<const element *>::const_iterator type1 = elements.begin(); type1 != elements.end(); ++type1) 53 for (vector<const element *>::const_iterator type2 = elements.begin(); type2 != elements.end(); ++type2) 54 54 if (type1 != type2) { 55 PairsOfElements.insert( pair<element *, element*>(*type1,*type2) );56 DoLog(1) && (Log() << Verbose(1) << "Creating element pair " << (*type1)->symbol << " and " << (*type2)->symbol<< "." << endl);55 PairsOfElements.insert( make_pair(*type1,*type2) ); 56 DoLog(1) && (Log() << Verbose(1) << "Creating element pair " << *(*type1) << " and " << *(*type2) << "." << endl); 57 57 } 58 58 } else if (elements.size() == 1) { // one to all are valid 59 element *elemental = *elements.begin();60 PairsOfElements.insert( pair< element *, element*>(elemental,(element *)NULL) );61 PairsOfElements.insert( pair< element *, element*>((element *)NULL,elemental) );59 const element *elemental = *elements.begin(); 60 PairsOfElements.insert( pair<const element *,const element*>(elemental,0) ); 61 PairsOfElements.insert( pair<const element *,const element*>(0,elemental) ); 62 62 } else { // all elements valid 63 63 PairsOfElements.insert( pair<element *, element*>((element *)NULL, (element *)NULL) ); … … 74 74 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << **runner << "." << endl); 75 75 if ((*iter)->getId() < (*runner)->getId()){ 76 for (set <pair< element *,element *> >::iterator PairRunner = PairsOfElements.begin(); PairRunner != PairsOfElements.end(); ++PairRunner)76 for (set <pair<const element *, const element *> >::iterator PairRunner = PairsOfElements.begin(); PairRunner != PairsOfElements.end(); ++PairRunner) 77 77 if ((PairRunner->first == (**iter).getType()) && (PairRunner->second == (**runner).getType())) { 78 78 distance = domain.periodicDistance((*iter)->getPosition(),(*runner)->getPosition()); … … 95 95 * \return Map of doubles with values the pair of the two atoms. 96 96 */ 97 PairCorrelationMap *PeriodicPairCorrelation(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const int ranges[NDIM] )97 PairCorrelationMap *PeriodicPairCorrelation(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const int ranges[NDIM] ) 98 98 { 99 99 Info FunctionInfo(__func__); … … 115 115 116 116 // create all possible pairs of elements 117 set <pair< element *,element *> > PairsOfElements;117 set <pair<const element *,const element *> > PairsOfElements; 118 118 if (elements.size() >= 2) { 119 for (vector< element *>::const_iterator type1 = elements.begin(); type1 != elements.end(); ++type1)120 for (vector< element *>::const_iterator type2 = elements.begin(); type2 != elements.end(); ++type2)119 for (vector<const element *>::const_iterator type1 = elements.begin(); type1 != elements.end(); ++type1) 120 for (vector<const element *>::const_iterator type2 = elements.begin(); type2 != elements.end(); ++type2) 121 121 if (type1 != type2) { 122 PairsOfElements.insert( pair<element *, element*>(*type1,*type2) );123 DoLog(1) && (Log() << Verbose(1) << "Creating element pair " << (*type1)->symbol << " and " << (*type2)->symbol<< "." << endl);122 PairsOfElements.insert( make_pair(*type1,*type2) ); 123 DoLog(1) && (Log() << Verbose(1) << "Creating element pair " << *(*type1) << " and " << *(*type2) << "." << endl); 124 124 } 125 125 } else if (elements.size() == 1) { // one to all are valid 126 element *elemental = *elements.begin();127 PairsOfElements.insert( pair< element *, element*>(elemental,(element *)NULL) );128 PairsOfElements.insert( pair< element *, element*>((element *)NULL,elemental) );126 const element *elemental = *elements.begin(); 127 PairsOfElements.insert( pair<const element *,const element*>(elemental,0) ); 128 PairsOfElements.insert( pair<const element *,const element*>(0,elemental) ); 129 129 } else { // all elements valid 130 130 PairsOfElements.insert( pair<element *, element*>((element *)NULL, (element *)NULL) ); … … 149 149 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << **runner << "." << endl); 150 150 if ((*iter)->getId() < (*runner)->getId()){ 151 for (set <pair< element *,element *> >::iterator PairRunner = PairsOfElements.begin(); PairRunner != PairsOfElements.end(); ++PairRunner)151 for (set <pair<const element *,const element *> >::iterator PairRunner = PairsOfElements.begin(); PairRunner != PairsOfElements.end(); ++PairRunner) 152 152 if ((PairRunner->first == (**iter).getType()) && (PairRunner->second == (**runner).getType())) { 153 153 periodicOtherX = FullInverseMatrix * ((*runner)->getPosition()); // x now in [0,1)^3 … … 178 178 * \return Map of dobules with values as pairs of atom and the vector 179 179 */ 180 CorrelationToPointMap *CorrelationToPoint(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Vector *point )180 CorrelationToPointMap *CorrelationToPoint(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Vector *point ) 181 181 { 182 182 Info FunctionInfo(__func__); … … 196 196 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 197 197 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 198 for (vector< element *>::const_iterator type = elements.begin(); type != elements.end(); ++type)198 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 199 199 if ((*type == NULL) || ((*iter)->getType() == *type)) { 200 200 distance = domain.periodicDistance((*iter)->getPosition(),*point); … … 215 215 * \return Map of dobules with values as pairs of atom and the vector 216 216 */ 217 CorrelationToPointMap *PeriodicCorrelationToPoint(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Vector *point, const int ranges[NDIM] )217 CorrelationToPointMap *PeriodicCorrelationToPoint(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Vector *point, const int ranges[NDIM] ) 218 218 { 219 219 Info FunctionInfo(__func__); … … 237 237 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 238 238 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 239 for (vector< element *>::const_iterator type = elements.begin(); type != elements.end(); ++type)239 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 240 240 if ((*type == NULL) || ((*iter)->getType() == *type)) { 241 241 periodicX = FullInverseMatrix * ((*iter)->getPosition()); // x now in [0,1)^3 … … 263 263 * \return Map of doubles with values as pairs of atom and the BoundaryTriangleSet that's closest 264 264 */ 265 CorrelationToSurfaceMap *CorrelationToSurface(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Tesselation * const Surface, const LinkedCell *LC )265 CorrelationToSurfaceMap *CorrelationToSurface(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Tesselation * const Surface, const LinkedCell *LC ) 266 266 { 267 267 Info FunctionInfo(__func__); … … 284 284 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 285 285 DoLog(3) && (Log() << Verbose(3) << "\tCurrent atom is " << *(*iter) << "." << endl); 286 for (vector< element *>::const_iterator type = elements.begin(); type != elements.end(); ++type)286 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 287 287 if ((*type == NULL) || ((*iter)->getType() == *type)) { 288 288 TriangleIntersectionList Intersections((*iter)->getPosition(),Surface,LC); … … 309 309 * \return Map of doubles with values as pairs of atom and the BoundaryTriangleSet that's closest 310 310 */ 311 CorrelationToSurfaceMap *PeriodicCorrelationToSurface(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Tesselation * const Surface, const LinkedCell *LC, const int ranges[NDIM] )311 CorrelationToSurfaceMap *PeriodicCorrelationToSurface(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Tesselation * const Surface, const LinkedCell *LC, const int ranges[NDIM] ) 312 312 { 313 313 Info FunctionInfo(__func__); … … 335 335 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 336 336 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 337 for (vector< element *>::const_iterator type = elements.begin(); type != elements.end(); ++type)337 for (vector<const element *>::const_iterator type = elements.begin(); type != elements.end(); ++type) 338 338 if ((*type == NULL) || ((*iter)->getType() == *type)) { 339 339 periodicX = FullInverseMatrix * ((*iter)->getPosition()); // x now in [0,1)^3 -
src/analysis_correlation.hpp
r1cc87e r353e82 46 46 /********************************************** declarations *******************************/ 47 47 48 PairCorrelationMap *PairCorrelation(std::vector<molecule *> &molecules, const std::vector< element *> &elements);49 CorrelationToPointMap *CorrelationToPoint(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Vector *point );50 CorrelationToSurfaceMap *CorrelationToSurface(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Tesselation * const Surface, const LinkedCell *LC );51 PairCorrelationMap *PeriodicPairCorrelation(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const int ranges[NDIM] );52 CorrelationToPointMap *PeriodicCorrelationToPoint(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Vector *point, const int ranges[NDIM] );53 CorrelationToSurfaceMap *PeriodicCorrelationToSurface(std::vector<molecule *> &molecules, const std::vector< element *> &elements, const Tesselation * const Surface, const LinkedCell *LC, const int ranges[NDIM] );48 PairCorrelationMap *PairCorrelation(std::vector<molecule *> &molecules, const std::vector<const element *> &elements); 49 CorrelationToPointMap *CorrelationToPoint(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Vector *point ); 50 CorrelationToSurfaceMap *CorrelationToSurface(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Tesselation * const Surface, const LinkedCell *LC ); 51 PairCorrelationMap *PeriodicPairCorrelation(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const int ranges[NDIM] ); 52 CorrelationToPointMap *PeriodicCorrelationToPoint(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Vector *point, const int ranges[NDIM] ); 53 CorrelationToSurfaceMap *PeriodicCorrelationToSurface(std::vector<molecule *> &molecules, const std::vector<const element *> &elements, const Tesselation * const Surface, const LinkedCell *LC, const int ranges[NDIM] ); 54 54 int GetBin ( const double value, const double BinWidth, const double BinStart ); 55 55 void OutputCorrelation( ofstream * const file, const BinPairMap * const map ); -
src/atom.cpp
r1cc87e r353e82 194 194 { 195 195 if (out != NULL) { 196 *out << getType()-> symbol<< "\t" << at(0) << "\t" << at(1) << "\t" << at(2) << "\t" << endl;196 *out << getType()->getSymbol() << "\t" << at(0) << "\t" << at(1) << "\t" << at(2) << "\t" << endl; 197 197 return true; 198 198 } else … … 232 232 { 233 233 if (out != NULL) { 234 *out << getType()-> symbol<< "\t";234 *out << getType()->getSymbol() << "\t"; 235 235 *out << Trajectory.R.at(step)[0] << "\t"; 236 236 *out << Trajectory.R.at(step)[1] << "\t"; … … 250 250 Vector recentered(getPosition()); 251 251 recentered -= *center; 252 *out << "\t\t" << getType()-> symbol<< " [ " << recentered[0] << "\t" << recentered[1] << "\t" << recentered[2] << " ]" << endl;252 *out << "\t\t" << getType()->getSymbol() << " [ " << recentered[0] << "\t" << recentered[1] << "\t" << recentered[2] << " ]" << endl; 253 253 if (AtomNo != NULL) 254 254 *AtomNo++; -
src/config.cpp
r1cc87e r353e82 1339 1339 AtomNo = 0; 1340 1340 for (molecule::const_iterator iter = (*MolRunner)->begin(); iter != (*MolRunner)->end(); ++iter) { 1341 sprintf(name, "%2s%2d",(*iter)->getType()-> symbol, elementNo[(*iter)->getType()->Z]);1341 sprintf(name, "%2s%2d",(*iter)->getType()->getSymbol().c_str(), elementNo[(*iter)->getType()->Z]); 1342 1342 elementNo[(*iter)->getType()->Z] = (elementNo[(*iter)->getType()->Z]+1) % 100; // confine to two digits 1343 1343 fprintf(f, … … 1354 1354 (double)(*iter)->getType()->NoValenceOrbitals, /* temperature factor */ 1355 1355 "0", /* segment identifier */ 1356 (*iter)->getType()-> symbol, /* element symbol */1356 (*iter)->getType()->getSymbol().c_str(), /* element symbol */ 1357 1357 "0"); /* charge */ 1358 1358 AtomNo++; … … 1392 1392 AtomNo = 0; 1393 1393 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 1394 sprintf(name, "%2s%2d",(*iter)->getType()-> symbol, elementNo[(*iter)->getType()->Z]);1394 sprintf(name, "%2s%2d",(*iter)->getType()->getSymbol().c_str(), elementNo[(*iter)->getType()->Z]); 1395 1395 elementNo[(*iter)->getType()->Z] = (elementNo[(*iter)->getType()->Z]+1) % 100; // confine to two digits 1396 1396 fprintf(f, … … 1407 1407 (double)(*iter)->getType()->NoValenceOrbitals, /* temperature factor */ 1408 1408 "0", /* segment identifier */ 1409 (*iter)->getType()-> symbol, /* element symbol */1409 (*iter)->getType()->getSymbol().c_str(), /* element symbol */ 1410 1410 "0"); /* charge */ 1411 1411 AtomNo++; … … 1452 1452 *output << (*iter)->at(0) << "\t" << (*iter)->at(1) << "\t" << (*iter)->at(2) << "\t"; 1453 1453 *output << static_cast<double>((*iter)->getType()->Valence) << "\t"; 1454 *output << (*iter)->getType()-> symbol<< "\t";1454 *output << (*iter)->getType()->getSymbol() << "\t"; 1455 1455 for (BondList::iterator runner = (*iter)->ListOfBonds.begin(); runner != (*iter)->ListOfBonds.end(); runner++) 1456 1456 *output << (*runner)->GetOtherAtom(*iter)->nr << "\t"; … … 1524 1524 *output << (*iter)->at(0) << "\t" << (*iter)->at(1) << "\t" << (*iter)->at(2) << "\t"; 1525 1525 *output << (double)(*iter)->getType()->Valence << "\t"; 1526 *output << (*iter)->getType()-> symbol<< "\t";1526 *output << (*iter)->getType()->getSymbol() << "\t"; 1527 1527 for (BondList::iterator runner = (*iter)->ListOfBonds.begin(); runner != (*iter)->ListOfBonds.end(); runner++) 1528 1528 *output << LocalNotoGlobalNoMap[ (*runner)->GetOtherAtom((*iter))->getId() ] << "\t"; -
src/element.cpp
r1cc87e r353e82 23 23 VanDerWaalsRadius(0), 24 24 Z(-1), 25 previous(NULL),26 next(NULL),27 sort(NULL),28 25 Valence(0), 29 26 NoValenceOrbitals(0) … … 31 28 }; 32 29 30 element::element(const element &src) : 31 mass(src.mass), 32 CovalentRadius(src.CovalentRadius), 33 VanDerWaalsRadius(src.VanDerWaalsRadius), 34 Z(src.Z), 35 Valence(src.Valence), 36 NoValenceOrbitals(src.NoValenceOrbitals), 37 name(src.name), 38 symbol(src.symbol) 39 { 40 strncpy(period,src.period,strfield_length+1); 41 strncpy(group,src.group,strfield_length+1); 42 strncpy(block,src.block,strfield_length+1); 43 } 44 33 45 /** Destructor of class element. 34 46 */ 35 47 element::~element() {}; 48 49 element &element::operator=(const element &src){ 50 if(this!=&src){ 51 mass=src.mass; 52 CovalentRadius=src.CovalentRadius; 53 VanDerWaalsRadius=src.VanDerWaalsRadius; 54 Z=src.Z; 55 Valence=src.Valence; 56 NoValenceOrbitals=src.NoValenceOrbitals; 57 name=src.name; 58 symbol=src.symbol; 59 strncpy(period,src.period,strfield_length+1); 60 strncpy(group,src.group,strfield_length+1); 61 strncpy(block,src.block,strfield_length+1); 62 } 63 return *this; 64 } 36 65 37 66 /** Prints element data to \a *out. … … 66 95 } 67 96 68 string element::getSymbol() const{69 return s tring(symbol);97 string &element::getSymbol(){ 98 return symbol; 70 99 } 71 100 72 std::string element::getName() const{ 73 return string(name); 101 const string &element::getSymbol() const{ 102 return symbol; 103 } 104 105 std::string &element::getName(){ 106 return name; 107 } 108 109 const std::string &element::getName() const{ 110 return name; 74 111 } 75 112 -
src/element.hpp
r1cc87e r353e82 28 28 */ 29 29 class element { 30 enum {strfield_length=7}; 30 31 public: 31 32 double mass; //!< mass in g/mol … … 33 34 double VanDerWaalsRadius; //!< can-der-Waals radius 34 35 int Z; //!< atomic number 35 char name[64]; //!< atom name, i.e. "Hydrogren" 36 char symbol[3]; //!< short form of the atom, i.e. "H" 37 char period[8]; //!< period: n quantum number 38 char group[8]; //!< group: l quantum number 39 char block[8]; //!< block: l quantum number 40 element *previous; //!< previous item in list 41 element *next; //!< next element in list 42 int *sort; //!< sorc criteria 36 char period[strfield_length+1]; //!< period: n quantum number 37 char group[strfield_length+1]; //!< group: l quantum number 38 char block[strfield_length+1]; //!< block: l quantum number 43 39 double Valence; //!< number of valence electrons for this element 44 40 int NoValenceOrbitals; //!< number of valence orbitals, used for determining bond degree in molecule::CreateConnectmatrix() … … 46 42 double HBondAngle[NDIM]; //!< typical angle for one, two, three bonded hydrogen (in degrees) 47 43 48 element(); 49 ~element(); 44 element(); 45 element(const element&); 46 ~element(); 50 47 51 // accessor functions 52 atomicNumber_t getNumber() const; 53 std::string getSymbol() const; 54 std::string getName() const; 48 element &operator=(const element&); 55 49 56 //> print element entries to screen 57 bool Output(std::ostream * const out) const; 58 bool Checkout(std::ostream * const out, const int No, const int NoOfAtoms) const; 50 // accessor functions 51 atomicNumber_t getNumber() const; 52 std::string &getSymbol(); 53 const std::string &getSymbol() const; 54 std::string &getName(); 55 const std::string &getName() const; 56 57 //> print element entries to screen 58 bool Output(std::ostream * const out) const; 59 bool Checkout(std::ostream * const out, const int No, const int NoOfAtoms) const; 59 60 60 61 private: 62 std::string name; //!< atom name, i.e. "Hydrogren" 63 std::string symbol; //!< short form of the atom, i.e. "H" 61 64 }; 62 65 -
src/molecule.cpp
r1cc87e r353e82 218 218 if(pointer->getName() == "Unknown"){ 219 219 stringstream sstr; 220 sstr << pointer->getType()-> symbol<< pointer->nr+1;220 sstr << pointer->getType()->getSymbol() << pointer->nr+1; 221 221 pointer->setName(sstr.str()); 222 222 } … … 972 972 NoNonHydrogen++; 973 973 stringstream sstr; 974 sstr << (*iter)->getType()-> symbol<< (*iter)->nr+1;974 sstr << (*iter)->getType()->getSymbol() << (*iter)->nr+1; 975 975 (*iter)->setName(sstr.str()); 976 976 DoLog(3) && (Log() << Verbose(3) << "Naming atom nr. " << (*iter)->nr << " " << (*iter)->getName() << "." << endl); … … 978 978 } 979 979 return res; 980 };981 982 /** Determines whether two molecules actually contain the same atoms and coordination.983 * \param *out output stream for debugging984 * \param *OtherMolecule the molecule to compare this one to985 * \param threshold upper limit of difference when comparing the coordination.986 * \return NULL - not equal, otherwise an allocated (molecule::AtomCount) permutation map of the atom numbers (which corresponds to which)987 */988 int * molecule::IsEqualToWithinThreshold(molecule *OtherMolecule, double threshold)989 {990 int flag;991 double *Distances = NULL, *OtherDistances = NULL;992 Vector CenterOfGravity, OtherCenterOfGravity;993 size_t *PermMap = NULL, *OtherPermMap = NULL;994 int *PermutationMap = NULL;995 bool result = true; // status of comparison996 997 DoLog(3) && (Log() << Verbose(3) << "Begin of IsEqualToWithinThreshold." << endl);998 /// first count both their atoms and elements and update lists thereby ...999 //Log() << Verbose(0) << "Counting atoms, updating list" << endl;1000 1001 /// ... and compare:1002 /// -# AtomCount1003 if (result) {1004 if (getAtomCount() != OtherMolecule->getAtomCount()) {1005 DoLog(4) && (Log() << Verbose(4) << "AtomCounts don't match: " << getAtomCount() << " == " << OtherMolecule->getAtomCount() << endl);1006 result = false;1007 } else Log() << Verbose(4) << "AtomCounts match: " << getAtomCount() << " == " << OtherMolecule->getAtomCount() << endl;1008 }1009 /// -# Formula1010 if (result) {1011 if (formula != OtherMolecule->formula) {1012 DoLog(4) && (Log() << Verbose(4) << "Formulas don't match: " << formula << " == " << OtherMolecule->formula << endl);1013 result = false;1014 } else Log() << Verbose(4) << "Formulas match: " << formula << " == " << OtherMolecule->formula << endl;1015 }1016 /// then determine and compare center of gravity for each molecule ...1017 if (result) {1018 DoLog(5) && (Log() << Verbose(5) << "Calculating Centers of Gravity" << endl);1019 DeterminePeriodicCenter(CenterOfGravity);1020 OtherMolecule->DeterminePeriodicCenter(OtherCenterOfGravity);1021 DoLog(5) && (Log() << Verbose(5) << "Center of Gravity: " << CenterOfGravity << endl);1022 DoLog(5) && (Log() << Verbose(5) << "Other Center of Gravity: " << OtherCenterOfGravity << endl);1023 if (CenterOfGravity.DistanceSquared(OtherCenterOfGravity) > threshold*threshold) {1024 DoLog(4) && (Log() << Verbose(4) << "Centers of gravity don't match." << endl);1025 result = false;1026 }1027 }1028 1029 /// ... then make a list with the euclidian distance to this center for each atom of both molecules1030 if (result) {1031 DoLog(5) && (Log() << Verbose(5) << "Calculating distances" << endl);1032 Distances = new double[getAtomCount()];1033 OtherDistances = new double[getAtomCount()];1034 SetIndexedArrayForEachAtomTo ( Distances, &atom::nr, &atom::DistanceSquaredToVector, (const Vector &)CenterOfGravity);1035 SetIndexedArrayForEachAtomTo ( OtherDistances, &atom::nr, &atom::DistanceSquaredToVector, (const Vector &)CenterOfGravity);1036 for(int i=0;i<getAtomCount();i++) {1037 Distances[i] = 0.;1038 OtherDistances[i] = 0.;1039 }1040 1041 /// ... sort each list (using heapsort (o(N log N)) from GSL)1042 DoLog(5) && (Log() << Verbose(5) << "Sorting distances" << endl);1043 PermMap = new size_t[getAtomCount()];1044 OtherPermMap = new size_t[getAtomCount()];1045 for(int i=0;i<getAtomCount();i++) {1046 PermMap[i] = 0;1047 OtherPermMap[i] = 0;1048 }1049 gsl_heapsort_index (PermMap, Distances, getAtomCount(), sizeof(double), CompareDoubles);1050 gsl_heapsort_index (OtherPermMap, OtherDistances, getAtomCount(), sizeof(double), CompareDoubles);1051 PermutationMap = new int[getAtomCount()];1052 for(int i=0;i<getAtomCount();i++)1053 PermutationMap[i] = 0;1054 DoLog(5) && (Log() << Verbose(5) << "Combining Permutation Maps" << endl);1055 for(int i=getAtomCount();i--;)1056 PermutationMap[PermMap[i]] = (int) OtherPermMap[i];1057 1058 /// ... and compare them step by step, whether the difference is individually(!) below \a threshold for all1059 DoLog(4) && (Log() << Verbose(4) << "Comparing distances" << endl);1060 flag = 0;1061 for (int i=0;i<getAtomCount();i++) {1062 DoLog(5) && (Log() << Verbose(5) << "Distances squared: |" << Distances[PermMap[i]] << " - " << OtherDistances[OtherPermMap[i]] << "| = " << fabs(Distances[PermMap[i]] - OtherDistances[OtherPermMap[i]]) << " ?<? " << threshold << endl);1063 if (fabs(Distances[PermMap[i]] - OtherDistances[OtherPermMap[i]]) > threshold*threshold)1064 flag = 1;1065 }1066 1067 // free memory1068 delete[](PermMap);1069 delete[](OtherPermMap);1070 delete[](Distances);1071 delete[](OtherDistances);1072 if (flag) { // if not equal1073 delete[](PermutationMap);1074 result = false;1075 }1076 }1077 /// return pointer to map if all distances were below \a threshold1078 DoLog(3) && (Log() << Verbose(3) << "End of IsEqualToWithinThreshold." << endl);1079 if (result) {1080 DoLog(3) && (Log() << Verbose(3) << "Result: Equal." << endl);1081 return PermutationMap;1082 } else {1083 DoLog(3) && (Log() << Verbose(3) << "Result: Not equal." << endl);1084 return NULL;1085 }1086 980 }; 1087 981 -
src/molecule.hpp
r1cc87e r353e82 324 324 325 325 // Recognize doubly appearing molecules in a list of them 326 int * IsEqualToWithinThreshold(molecule *OtherMolecule, double threshold);327 326 int * GetFatherSonAtomicMap(molecule *OtherMolecule); 328 327 -
src/periodentafel.cpp
r1cc87e r353e82 34 34 { 35 35 stringstream input(elementsDB,ios_base::in); 36 bool status = LoadElementsDatabase( &input);36 bool status = LoadElementsDatabase(input); 37 37 ASSERT(status, "General element initialization failed"); 38 38 } … … 72 72 * \return iterator to added element 73 73 */ 74 periodentafel::iterator periodentafel::AddElement(element * constpointer)74 periodentafel::iterator periodentafel::AddElement(element * pointer) 75 75 { 76 76 atomicNumber_t Z = pointer->getNumber(); 77 77 ASSERT(!elements.count(Z), "Element is already present."); 78 pointer->sort = &pointer->Z;79 78 if (pointer->getNumber() < 1 && pointer->getNumber() >= MAX_ELEMENTS) 80 79 DoeLog(0) && (eLog() << Verbose(0) << "Invalid Z number!\n"); … … 86 85 * \param *pointer element to be removed 87 86 */ 88 size_t periodentafel::RemoveElement( element * constpointer)87 size_t periodentafel::RemoveElement(const element * pointer) 89 88 { 90 89 return RemoveElement(pointer->getNumber()); … … 114 113 * \return pointer to element or NULL if not found 115 114 */ 116 element * constperiodentafel::FindElement(atomicNumber_t Z) const115 const element * periodentafel::FindElement(atomicNumber_t Z) const 117 116 { 118 117 const_iterator res = elements.find(Z); … … 125 124 * \return pointer to element 126 125 */ 127 element * constperiodentafel::FindElement(const string &shorthand) const126 const element * periodentafel::FindElement(const string &shorthand) const 128 127 { 129 128 element *res = 0; … … 140 139 * \return desired element or NULL 141 140 */ 142 element * constperiodentafel::AskElement() const143 { 144 element * walker = NULL;141 const element * periodentafel::AskElement() const 142 { 143 const element * walker = NULL; 145 144 int Z; 146 145 do { … … 155 154 * \return pointer to either present or newly created element 156 155 */ 157 element * constperiodentafel::EnterElement()156 const element * periodentafel::EnterElement() 158 157 { 159 158 atomicNumber_t Z = 0; 160 159 DoLog(0) && (Log() << Verbose(0) << "Atomic number: " << Z << endl); 161 160 cin >> Z; 162 element * constres = FindElement(Z);161 const element *res = FindElement(Z); 163 162 if (!res) { 164 163 // TODO: make this using the constructor … … 169 168 cin >> tmp->mass; 170 169 DoLog(0) && (Log() << Verbose(0) << "Name [max 64 chars]: " << endl); 171 cin >> tmp-> name;170 cin >> tmp->getName(); 172 171 DoLog(0) && (Log() << Verbose(0) << "Short form [max 3 chars]: " << endl); 173 cin >> tmp-> symbol;172 cin >> tmp->getSymbol(); 174 173 AddElement(tmp); 175 174 return tmp; … … 180 179 181 180 /******************** Access to iterators ****************************/ 182 periodentafel::const_iterator periodentafel::begin() {181 periodentafel::const_iterator periodentafel::begin() const{ 183 182 return elements.begin(); 184 183 } 185 184 186 periodentafel::const_iterator periodentafel::end() {185 periodentafel::const_iterator periodentafel::end() const{ 187 186 return elements.end(); 188 187 } 189 188 190 periodentafel::reverse_iterator periodentafel::rbegin() {189 periodentafel::reverse_iterator periodentafel::rbegin() const{ 191 190 return reverse_iterator(elements.end()); 192 191 } 193 192 194 periodentafel::reverse_iterator periodentafel::rend() {193 periodentafel::reverse_iterator periodentafel::rend() const{ 195 194 return reverse_iterator(elements.begin()); 196 195 } … … 228 227 if (!input.fail()) 229 228 DoLog(0) && (Log() << Verbose(0) << "Using " << filename << " as elements database." << endl); 230 status = status && LoadElementsDatabase( &input);229 status = status && LoadElementsDatabase(input); 231 230 input.close(); 232 231 input.clear(); … … 287 286 * \return true - parsing successful, false - something went wrong 288 287 */ 289 bool periodentafel::LoadElementsDatabase(istream *input)288 bool periodentafel::LoadElementsDatabase(istream &input) 290 289 { 291 290 bool status = true; 292 int counter = 0; 293 pair< std::map<atomicNumber_t,element*>::iterator, bool > InserterTest; 294 if (!(*input).fail()) { 295 (*input).getline(header1, MAXSTRINGSIZE); 296 (*input).getline(header2, MAXSTRINGSIZE); // skip first two header lines 291 string header1tmp,header2tmp; 292 // first parse into a map, so we can revert to old status in case something goes wront 293 map<atomicNumber_t,element*> parsedElements; 294 if (!input.fail()) { 295 getline(input,header1tmp); 296 getline(input,header2tmp); // skip first two header lines 297 cout << "First header: " << header1tmp << endl; 298 cout << "Second header: " << header2tmp << endl; 297 299 DoLog(0) && (Log() << Verbose(0) << "Parsed elements:"); 298 while (! (*input).eof()) {300 while (!input.eof()) { 299 301 element *neues = new element; 300 (*input) >> neues->name;301 //(*input) >> ws; 302 (*input) >> neues->symbol;303 //(*input) >> ws; 304 (*input)>> neues->period;305 //(*input) >> ws; 306 (*input)>> neues->group;307 //(*input) >> ws; 308 (*input)>> neues->block;309 //(*input) >> ws; 310 (*input)>> neues->Z;311 //(*input) >> ws; 312 (*input)>> neues->mass;313 //(*input) >> ws; 314 (*input)>> neues->CovalentRadius;315 //(*input) >> ws; 316 (*input)>> neues->VanDerWaalsRadius;317 //(*input) >> ws; 318 (*input)>> ws;302 input >> neues->getName();; 303 //(*input) >> ws; 304 input >> neues->getSymbol(); 305 //(*input) >> ws; 306 input >> neues->period; 307 //(*input) >> ws; 308 input >> neues->group; 309 //(*input) >> ws; 310 input >> neues->block; 311 //(*input) >> ws; 312 input >> neues->Z; 313 //(*input) >> ws; 314 input >> neues->mass; 315 //(*input) >> ws; 316 input >> neues->CovalentRadius; 317 //(*input) >> ws; 318 input >> neues->VanDerWaalsRadius; 319 //(*input) >> ws; 320 input >> ws; 319 321 //neues->Output((ofstream *)&cout); 320 322 if ((neues->getNumber() > 0) && (neues->getNumber() < MAX_ELEMENTS)) { 321 if (elements.count(neues->getNumber())) {// if element already present, remove and delete old one (i.e. replace it) 322 //cout << neues->symbol << " is present already." << endl; 323 element * const Elemental = FindElement(neues->getNumber()); 324 ASSERT(Elemental != NULL, "element should be present but is not??"); 325 *Elemental = *neues; 326 delete(neues); 327 neues = Elemental; 328 } else { 329 InserterTest = elements.insert(pair <atomicNumber_t,element*> (neues->getNumber(), neues)); 330 ASSERT(InserterTest.second, "Could not insert new element into periodentafel on LoadElementsDatabase()."); 331 } 332 DoLog(0) && (Log() << Verbose(0) << " " << elements[neues->getNumber()]->symbol); 333 counter++; 323 parsedElements[neues->Z] = neues; 324 DoLog(0) && (Log() << Verbose(0) << " " << *neues); 334 325 } else { 335 326 DoeLog(2) && (eLog() << Verbose(2) << "Detected empty line or invalid element in elements db, discarding." << endl); … … 337 328 delete(neues); 338 329 } 330 // when the input is in failed state, we most likely just read garbage 331 if(input.fail()) { 332 DoeLog(2) && (eLog() << Verbose(2) << "Error parsing elements db." << endl); 333 status = false; 334 break; 335 } 339 336 } 340 337 DoLog(0) && (Log() << Verbose(0) << endl); … … 344 341 } 345 342 346 if ( counter == 0)343 if (!parsedElements.size()) 347 344 status = false; 345 346 if(status){ 347 for(map<atomicNumber_t,element*>::iterator iter=parsedElements.begin(); 348 iter!=parsedElements.end(); 349 ++iter){ 350 if (elements.count(iter->first)) { 351 // if element already present, replace the old one 352 // pointer to old element might still be in use, so we have to replace into the old element 353 *(elements[iter->first])=*iter->second; 354 } 355 else { 356 // no such element in periodentafel... we can just insert 357 elements[iter->first] = iter->second; 358 } 359 } 360 // all went well.. we now copy the header 361 strncpy(header1,header1tmp.c_str(),MAXSTRINGSIZE); 362 header1[MAXSTRINGSIZE-1]=0; 363 strncpy(header2,header2tmp.c_str(),MAXSTRINGSIZE); 364 header2[MAXSTRINGSIZE-1]=0; 365 } 348 366 349 367 return status; -
src/periodentafel.hpp
r1cc87e r353e82 43 43 ~periodentafel(); 44 44 45 iterator AddElement(element * constpointer);46 size_t RemoveElement( element * constpointer);45 iterator AddElement(element * pointer); 46 size_t RemoveElement(const element * pointer); 47 47 size_t RemoveElement(atomicNumber_t); 48 48 void CleanupPeriodtable(); 49 element * constFindElement(atomicNumber_t) const;50 element * constFindElement(const std::string &shorthand) const;51 element * constAskElement() const;52 element * constEnterElement();49 const element * FindElement(atomicNumber_t) const; 50 const element * FindElement(const std::string &shorthand) const; 51 const element * AskElement() const; 52 const element * EnterElement(); 53 53 54 const_iterator begin() ;55 const_iterator end() ;56 reverse_iterator rbegin() ;57 reverse_iterator rend() ;54 const_iterator begin() const; 55 const_iterator end() const; 56 reverse_iterator rbegin() const; 57 reverse_iterator rend() const; 58 58 bool Output(std::ostream * const output) const; 59 59 bool LoadPeriodentafel(const char * const path); … … 62 62 private: 63 63 64 bool LoadElementsDatabase(std::istream *input);64 bool LoadElementsDatabase(std::istream &input); 65 65 bool LoadValenceDatabase(std::istream *input); 66 66 bool LoadOrbitalsDatabase(std::istream *input); -
src/unittests/AnalysisCorrelationToPointUnitTest.cpp
r1cc87e r353e82 46 46 47 47 // construct element list 48 std::vector< element *> elements;48 std::vector<const element *> elements; 49 49 hydrogen = World::getInstance().getPeriode()->FindElement(1); 50 50 CPPUNIT_ASSERT(hydrogen != NULL && "hydrogen element not found"); -
src/unittests/AnalysisCorrelationToPointUnitTest.hpp
r1cc87e r353e82 37 37 std::vector<molecule *> allMolecules; 38 38 molecule *TestMolecule; 39 element *hydrogen;39 const element *hydrogen; 40 40 41 41 CorrelationToPointMap *pointmap; -
src/unittests/AnalysisCorrelationToSurfaceUnitTest.hpp
r1cc87e r353e82 45 45 std::vector<molecule *> allMolecules; 46 46 molecule *TestSurfaceMolecule; 47 element *hydrogen;48 element *carbon;49 std::vector< element *> elements;47 const element *hydrogen; 48 const element *carbon; 49 std::vector<const element *> elements; 50 50 51 51 CorrelationToSurfaceMap *surfacemap; -
src/unittests/AnalysisPairCorrelationUnitTest.cpp
r1cc87e r353e82 49 49 50 50 // construct element list 51 std::vector< element *> elements;51 std::vector<const element *> elements; 52 52 hydrogen = World::getInstance().getPeriode()->FindElement(1); 53 53 CPPUNIT_ASSERT(hydrogen != NULL && "hydrogen element not found"); -
src/unittests/AnalysisPairCorrelationUnitTest.hpp
r1cc87e r353e82 37 37 std::vector<molecule *> allMolecules; 38 38 molecule *TestMolecule; 39 element *hydrogen;39 const element *hydrogen; 40 40 41 41 PairCorrelationMap *correlationmap; -
src/unittests/periodentafelTest.cpp
r1cc87e r353e82 11 11 #include <cppunit/extensions/TestFactoryRegistry.h> 12 12 #include <cppunit/ui/text/TestRunner.h> 13 14 #include <sstream> 15 #include <iostream> 13 16 14 17 #include "Helpers/Assert.hpp" … … 67 70 { 68 71 // reload all databases 69 CPPUNIT_ASSERT(tafel->LoadElementsDatabase(new stringstream(elementsDB,ios_base::in)) && "General element initialization failed"); 72 stringstream elementsDBstream(elementsDB,ios_base::in); 73 CPPUNIT_ASSERT(tafel->LoadElementsDatabase(elementsDBstream) && "General element initialization failed"); 70 74 CPPUNIT_ASSERT(tafel->LoadValenceDatabase(new stringstream(valenceDB,ios_base::in)) && "Valence entry of element initialization failed"); 71 75 CPPUNIT_ASSERT(tafel->LoadOrbitalsDatabase(new stringstream(orbitalsDB,ios_base::in)) && "Orbitals entry of element initialization failed"); -
src/unittests/periodentafelTest.hpp
r1cc87e r353e82 31 31 private: 32 32 33 element *hydrogen;34 element *carbon;33 const element *hydrogen; 34 const element *carbon; 35 35 periodentafel *tafel; 36 36
Note:
See TracChangeset
for help on using the changeset viewer.