Changes in src/Actions/MapOfActions.cpp [83f176:51769f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MapOfActions.cpp
r83f176 r51769f 1 /*2 * Project: MoleCuilder3 * Description: creates and alters molecular systems4 * Copyright (C) 2010 University of Bonn. All rights reserved.5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.6 */7 8 1 /* 9 2 * MapOfActions.cpp … … 808 801 if (typeid(const element ) == *TypeMap[name]) { 809 802 std::ostringstream stream; 810 stream << _T-> getAtomicNumber();803 stream << _T->Z; 811 804 CurrentValue[name] = stream.str(); 812 805 } else … … 869 862 std::ostringstream stream; 870 863 for (std::vector<const element *>::iterator iter = _T.begin(); iter != _T.end(); ++iter) { 871 stream << (*iter)-> getAtomicNumber()<< " ";864 stream << (*iter)->Z << " "; 872 865 } 873 866 CurrentValue[name] = stream.str();
Note:
See TracChangeset
for help on using the changeset viewer.