[97ebf8] | 1 | /*
|
---|
| 2 | * PairCorrelationToPointAction.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: May 9, 2010
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[112b09] | 8 | #include "Helpers/MemDebug.hpp"
|
---|
| 9 |
|
---|
[97ebf8] | 10 | #include "Actions/AnalysisAction/PairCorrelationToPointAction.hpp"
|
---|
| 11 | #include "CommandLineParser.hpp"
|
---|
| 12 | #include "analysis_correlation.hpp"
|
---|
| 13 | #include "log.hpp"
|
---|
| 14 | #include "element.hpp"
|
---|
| 15 | #include "periodentafel.hpp"
|
---|
| 16 | #include "World.hpp"
|
---|
| 17 |
|
---|
| 18 | #include <iostream>
|
---|
| 19 | #include <string>
|
---|
| 20 |
|
---|
| 21 | using namespace std;
|
---|
| 22 |
|
---|
| 23 | #include "UIElements/UIFactory.hpp"
|
---|
| 24 | #include "UIElements/Dialog.hpp"
|
---|
| 25 | #include "Actions/MapOfActions.hpp"
|
---|
| 26 |
|
---|
| 27 | const char AnalysisPairCorrelationToPointAction::NAME[] = "pair-correlation-point";
|
---|
| 28 |
|
---|
| 29 | AnalysisPairCorrelationToPointAction::AnalysisPairCorrelationToPointAction() :
|
---|
| 30 | Action(NAME)
|
---|
| 31 | {}
|
---|
| 32 |
|
---|
| 33 | AnalysisPairCorrelationToPointAction::~AnalysisPairCorrelationToPointAction()
|
---|
| 34 | {}
|
---|
| 35 |
|
---|
| 36 | Action::state_ptr AnalysisPairCorrelationToPointAction::performCall() {
|
---|
| 37 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
| 38 | int ranges[3] = {1, 1, 1};
|
---|
| 39 | Vector position;
|
---|
| 40 | double BinStart = 0.;
|
---|
| 41 | double BinEnd = 0.;
|
---|
| 42 | string outputname;
|
---|
| 43 | string binoutputname;
|
---|
| 44 | bool periodic;
|
---|
| 45 | ofstream output;
|
---|
| 46 | ofstream binoutput;
|
---|
| 47 | const element *elemental;
|
---|
| 48 |
|
---|
| 49 | dialog->queryElement("elements", &elemental, MapOfActions::getInstance().getDescription("element"));
|
---|
| 50 | dialog->queryVector("position", &position, World::getInstance().getDomain(), true, MapOfActions::getInstance().getDescription("position"));
|
---|
| 51 | dialog->queryDouble("bin-start", &BinStart, MapOfActions::getInstance().getDescription("bin-start"));
|
---|
| 52 | dialog->queryDouble("bin-end", &BinEnd, MapOfActions::getInstance().getDescription("bin-end"));
|
---|
| 53 | dialog->queryString("output-file", &outputname, MapOfActions::getInstance().getDescription("output-file"));
|
---|
| 54 | dialog->queryString("bin-output-file", &binoutputname, MapOfActions::getInstance().getDescription("bin-output-file"));
|
---|
| 55 | dialog->queryBoolean("periodic", &periodic, MapOfActions::getInstance().getDescription("periodic"));
|
---|
| 56 |
|
---|
| 57 | if(dialog->display()) {
|
---|
| 58 | output.open(outputname.c_str());
|
---|
| 59 | binoutput.open(binoutputname.c_str());
|
---|
| 60 | const Vector Point = position;
|
---|
| 61 | CorrelationToPointMap *correlationmap = NULL;
|
---|
| 62 | if (periodic)
|
---|
| 63 | correlationmap = PeriodicCorrelationToPoint(World::getInstance().getMolecules(), elemental, &Point, ranges);
|
---|
| 64 | else
|
---|
| 65 | correlationmap = CorrelationToPoint(World::getInstance().getMolecules(), elemental, &Point);
|
---|
| 66 | //OutputCorrelationToSurface(&output, correlationmap);
|
---|
| 67 | BinPairMap *binmap = BinData( correlationmap, 0.5, BinStart, BinEnd );
|
---|
| 68 | OutputCorrelation ( &binoutput, binmap );
|
---|
| 69 | output.close();
|
---|
| 70 | binoutput.close();
|
---|
| 71 | delete(binmap);
|
---|
| 72 | delete(correlationmap);
|
---|
| 73 | delete dialog;
|
---|
| 74 | return Action::success;
|
---|
| 75 | } else {
|
---|
| 76 | delete dialog;
|
---|
| 77 | return Action::failure;
|
---|
| 78 | }
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | Action::state_ptr AnalysisPairCorrelationToPointAction::performUndo(Action::state_ptr _state) {
|
---|
| 82 | // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
|
---|
| 83 |
|
---|
| 84 | return Action::failure;
|
---|
| 85 | // string newName = state->mol->getName();
|
---|
| 86 | // state->mol->setName(state->lastName);
|
---|
| 87 | //
|
---|
| 88 | // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | Action::state_ptr AnalysisPairCorrelationToPointAction::performRedo(Action::state_ptr _state){
|
---|
| 92 | return Action::failure;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | bool AnalysisPairCorrelationToPointAction::canUndo() {
|
---|
| 96 | return false;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | bool AnalysisPairCorrelationToPointAction::shouldUndo() {
|
---|
| 100 | return false;
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | const string AnalysisPairCorrelationToPointAction::getName() {
|
---|
| 104 | return NAME;
|
---|
| 105 | }
|
---|