- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/AnalysisAction/PointCorrelationAction.cpp
r952f38 re5c0a1 13 13 #include "boundary.hpp" 14 14 #include "linkedcell.hpp" 15 #include " Helpers/Verbose.hpp"16 #include " Helpers/Log.hpp"15 #include "verbose.hpp" 16 #include "log.hpp" 17 17 #include "element.hpp" 18 18 #include "molecule.hpp" 19 19 #include "periodentafel.hpp" 20 #include " LinearAlgebra/Vector.hpp"20 #include "vector.hpp" 21 21 #include "World.hpp" 22 22 … … 28 28 #include "UIElements/UIFactory.hpp" 29 29 #include "UIElements/Dialog.hpp" 30 #include " Actions/ValueStorage.hpp"30 #include "UIElements/ValueStorage.hpp" 31 31 32 32 const char AnalysisPointCorrelationAction::NAME[] = "point-correlation"; … … 77 77 ofstream output; 78 78 ofstream binoutput; 79 std::vector< element *> elements;79 std::vector<const element *> elements; 80 80 string type; 81 81 Vector Point; … … 97 97 cout << "Point to correlate to is " << Point << endl; 98 98 CorrelationToPointMap *correlationmap = NULL; 99 for(std::vector< element *>::iterator iter = elements.begin(); iter != elements.end(); ++iter)100 cout << "element is " << (*iter)-> symbol<< endl;99 for(std::vector<const element *>::iterator iter = elements.begin(); iter != elements.end(); ++iter) 100 cout << "element is " << (*iter)->getSymbol() << endl; 101 101 std::vector<molecule*> molecules = World::getInstance().getSelectedMolecules(); 102 102 if (periodic)
Note:
See TracChangeset
for help on using the changeset viewer.