- Timestamp:
- Sep 19, 2013, 8:23:53 PM (11 years ago)
- 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)
- Location:
- src
- Files:
-
- 3 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
r992839 r7e3f11a 27 27 include Fragmentation/Automation/Makefile.am 28 28 include Jobs/Makefile.am 29 endif 30 31 if CONDPYTHON 32 include Python/Makefile.am 29 33 endif 30 34 … … 319 323 320 324 325 321 326 molecuilder_CPPFLAGS = $(AM_CPPFLAGS) 322 327 #molecuilder_CPPFLAGS += -DNO_CACHING … … 331 336 builder.cpp \ 332 337 builder_init.cpp \ 333 builder_init.hpp \ 334 PythonScripting.hpp 338 builder_init.hpp 335 339 molecuilder_LDADD = \ 336 340 libMolecuilderUI.la … … 363 367 builder_init.cpp \ 364 368 builder_init.hpp \ 365 Python Scripting.hpp369 Python/PythonScripting.hpp 366 370 molecuildergui_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_GUI_QT 367 371 molecuildergui_LDFLAGS = \ -
src/Python/PythonScripting_impl.hpp
r992839 r7e3f11a 95 95 } 96 96 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.py102 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 string116 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 }133 97 134 98 #endif /* PYTHONSCRIPTING_HPP_ */ -
src/UIElements/Makefile.am
r992839 r7e3f11a 268 268 libMolecuilderRandomNumbers.la \ 269 269 libMolecuilderPotentials.la \ 270 libMolecuilderFunctionApproximation.la \ 270 libMolecuilderFunctionApproximation.la 271 272 if CONDPYTHON 273 libMolecuilderUI_la_LIBADD += \ 274 libMolecuilderPython.la 275 endif 276 277 libMolecuilderUI_la_LIBADD += \ 271 278 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 272 279 ${CodePatterns_LIBS} \ … … 276 283 $(BOOST_SYSTEM_LIBS) \ 277 284 $(BOOST_THREAD_LIBS) 285 278 286 279 287 if CONDLEVMAR -
src/builder_init.cpp
r992839 r7e3f11a 35 35 // boost::python uses placement new which is incompatible with MemDebug. 36 36 #ifdef HAVE_PYTHON 37 #include "Python Scripting.hpp"37 #include "Python/PythonScripting.hpp" 38 38 #endif 39 39
Note:
See TracChangeset
for help on using the changeset viewer.