source: src/Actions/AnalysisAction/PairCorrelationToPointAction.cpp@ 97ebf8

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 97ebf8 was 97ebf8, checked in by Frederik Heber <heber@…>, 15 years ago

Added all commands defined in ParseCommandLineOptions() as Actions.

  • Actions are not yet used, except verbose, version and help.
  • Files are present and included in Makefile.am
  • not unit tests written so far
  • no action has been tested so far (except for MapOfActions)
  • structure introduced to to transition from ParseCommandLineOptions to actions.
  • program name and config file are fixed arguments.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 3.4 KB
Line 
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
19using namespace std;
20
21#include "UIElements/UIFactory.hpp"
22#include "UIElements/Dialog.hpp"
23#include "Actions/MapOfActions.hpp"
24
25const char AnalysisPairCorrelationToPointAction::NAME[] = "pair-correlation-point";
26
27AnalysisPairCorrelationToPointAction::AnalysisPairCorrelationToPointAction() :
28 Action(NAME)
29{}
30
31AnalysisPairCorrelationToPointAction::~AnalysisPairCorrelationToPointAction()
32{}
33
34Action::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
79Action::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
89Action::state_ptr AnalysisPairCorrelationToPointAction::performRedo(Action::state_ptr _state){
90 return Action::failure;
91}
92
93bool AnalysisPairCorrelationToPointAction::canUndo() {
94 return false;
95}
96
97bool AnalysisPairCorrelationToPointAction::shouldUndo() {
98 return false;
99}
100
101const string AnalysisPairCorrelationToPointAction::getName() {
102 return NAME;
103}
Note: See TracBrowser for help on using the repository browser.