Changeset 7e3f11a for src


Ignore:
Timestamp:
Sep 19, 2013, 8:23:53 PM (11 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
12d946
Parents:
992839
git-author:
Frederik Heber <heber@…> (08/26/13 15:18:05)
git-committer:
Frederik Heber <heber@…> (09/19/13 20:23:53)
Message:

Moved PythonScripting into own folder and created convenience library.

  • this is preparatory for creating load session action.
Location:
src
Files:
3 added
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    r992839 r7e3f11a  
    2727include Fragmentation/Automation/Makefile.am
    2828include Jobs/Makefile.am
     29endif
     30
     31if CONDPYTHON
     32include Python/Makefile.am
    2933endif
    3034
     
    319323
    320324
     325
    321326molecuilder_CPPFLAGS  = $(AM_CPPFLAGS)
    322327#molecuilder_CPPFLAGS += -DNO_CACHING
     
    331336        builder.cpp \
    332337        builder_init.cpp \
    333         builder_init.hpp \
    334         PythonScripting.hpp
     338        builder_init.hpp
    335339molecuilder_LDADD = \
    336340        libMolecuilderUI.la
     
    363367        builder_init.cpp \
    364368        builder_init.hpp \
    365         PythonScripting.hpp
     369        Python/PythonScripting.hpp
    366370molecuildergui_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_GUI_QT
    367371molecuildergui_LDFLAGS = \
  • src/Python/PythonScripting_impl.hpp

    r992839 r7e3f11a  
    9595}
    9696
    97 bool executePythonScript(const std::string &pythonfilename_string)
    98 {
    99   boost::filesystem::path pythonfilename(pythonfilename_string);
    100   if (exists(pythonfilename)) {
    101     // parse in and execute the local and global config.py
    102     try {
    103       PyImport_AppendInittab( "pyMoleCuilder", &initpyMoleCuilder );
    104 
    105       Py_Initialize();
    106 
    107       boost::python::object main_module((
    108           boost::python::handle<>(boost::python::borrowed(PyImport_AddModule("__main__")))));
    109 
    110       boost::python::object main_namespace = main_module.attr("__dict__");
    111 
    112       boost::python::object molecuilder_module( (boost::python::handle<>(PyImport_ImportModule("pyMoleCuilder"))) );
    113       main_namespace["pyMoleCuilder"] = molecuilder_module;
    114 
    115       // parse file into a string
    116       std::ifstream pythonfile(pythonfilename.string().c_str());
    117       std::string pythonscript( std::istreambuf_iterator<char>(pythonfile),
    118           (std::istreambuf_iterator<char>()) );
    119       std::string enveloped_script("print \"BEGIN of "+pythonfilename_string+":\"\n");
    120       enveloped_script += pythonscript;
    121       enveloped_script += std::string("print \"END of "+pythonfilename_string+":\"\n");
    122 
    123       boost::python::handle<> ignored(( PyRun_String( enveloped_script.c_str(),
    124           Py_file_input,
    125           main_namespace.ptr(),
    126           main_namespace.ptr() ) ));
    127 
    128     } catch( boost::python::error_already_set ) {
    129       PyErr_Print();
    130     }
    131   }
    132 }
    13397
    13498#endif /* PYTHONSCRIPTING_HPP_ */
  • src/UIElements/Makefile.am

    r992839 r7e3f11a  
    268268        libMolecuilderRandomNumbers.la \
    269269        libMolecuilderPotentials.la \
    270         libMolecuilderFunctionApproximation.la \
     270        libMolecuilderFunctionApproximation.la
     271
     272if CONDPYTHON
     273libMolecuilderUI_la_LIBADD += \
     274        libMolecuilderPython.la
     275endif
     276
     277libMolecuilderUI_la_LIBADD += \
    271278        $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
    272279        ${CodePatterns_LIBS} \
     
    276283        $(BOOST_SYSTEM_LIBS) \
    277284        $(BOOST_THREAD_LIBS)
     285
    278286
    279287if CONDLEVMAR
  • src/builder_init.cpp

    r992839 r7e3f11a  
    3535// boost::python uses placement new which is incompatible with MemDebug.
    3636#ifdef HAVE_PYTHON
    37 #include "PythonScripting.hpp"
     37#include "Python/PythonScripting.hpp"
    3838#endif
    3939
Note: See TracChangeset for help on using the changeset viewer.