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