hillclimber 0.1.5a8__cp314-cp314-macosx_15_0_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hillclimber/__init__.py +39 -0
- hillclimber/actions.py +53 -0
- hillclimber/analysis.py +590 -0
- hillclimber/biases.py +293 -0
- hillclimber/calc.py +22 -0
- hillclimber/cvs.py +1065 -0
- hillclimber/interfaces.py +133 -0
- hillclimber/metadynamics.py +325 -0
- hillclimber/nodes.py +6 -0
- hillclimber/opes.py +359 -0
- hillclimber/selectors.py +230 -0
- hillclimber/virtual_atoms.py +341 -0
- hillclimber-0.1.5a8.dist-info/METADATA +209 -0
- hillclimber-0.1.5a8.dist-info/RECORD +469 -0
- hillclimber-0.1.5a8.dist-info/WHEEL +6 -0
- hillclimber-0.1.5a8.dist-info/entry_points.txt +8 -0
- hillclimber-0.1.5a8.dist-info/licenses/LICENSE +165 -0
- plumed/__init__.py +104 -0
- plumed/_lib/bin/plumed +0 -0
- plumed/_lib/bin/plumed-config +9 -0
- plumed/_lib/bin/plumed-patch +9 -0
- plumed/_lib/include/plumed/adjmat/AdjacencyMatrixBase.h +659 -0
- plumed/_lib/include/plumed/adjmat/ContactMatrix.h +59 -0
- plumed/_lib/include/plumed/asmjit/arch.h +228 -0
- plumed/_lib/include/plumed/asmjit/arm.h +43 -0
- plumed/_lib/include/plumed/asmjit/asmjit.h +69 -0
- plumed/_lib/include/plumed/asmjit/asmjit_apibegin.h +143 -0
- plumed/_lib/include/plumed/asmjit/asmjit_apiend.h +93 -0
- plumed/_lib/include/plumed/asmjit/asmjit_build.h +971 -0
- plumed/_lib/include/plumed/asmjit/assembler.h +183 -0
- plumed/_lib/include/plumed/asmjit/base.h +56 -0
- plumed/_lib/include/plumed/asmjit/codebuilder.h +944 -0
- plumed/_lib/include/plumed/asmjit/codecompiler.h +767 -0
- plumed/_lib/include/plumed/asmjit/codeemitter.h +528 -0
- plumed/_lib/include/plumed/asmjit/codeholder.h +777 -0
- plumed/_lib/include/plumed/asmjit/constpool.h +286 -0
- plumed/_lib/include/plumed/asmjit/cpuinfo.h +402 -0
- plumed/_lib/include/plumed/asmjit/func.h +1327 -0
- plumed/_lib/include/plumed/asmjit/globals.h +370 -0
- plumed/_lib/include/plumed/asmjit/inst.h +137 -0
- plumed/_lib/include/plumed/asmjit/logging.h +317 -0
- plumed/_lib/include/plumed/asmjit/misc_p.h +103 -0
- plumed/_lib/include/plumed/asmjit/moved_string.h +318 -0
- plumed/_lib/include/plumed/asmjit/operand.h +1599 -0
- plumed/_lib/include/plumed/asmjit/osutils.h +207 -0
- plumed/_lib/include/plumed/asmjit/regalloc_p.h +597 -0
- plumed/_lib/include/plumed/asmjit/runtime.h +227 -0
- plumed/_lib/include/plumed/asmjit/simdtypes.h +1104 -0
- plumed/_lib/include/plumed/asmjit/utils.h +1387 -0
- plumed/_lib/include/plumed/asmjit/vmem.h +183 -0
- plumed/_lib/include/plumed/asmjit/x86.h +45 -0
- plumed/_lib/include/plumed/asmjit/x86assembler.h +125 -0
- plumed/_lib/include/plumed/asmjit/x86builder.h +117 -0
- plumed/_lib/include/plumed/asmjit/x86compiler.h +322 -0
- plumed/_lib/include/plumed/asmjit/x86emitter.h +5149 -0
- plumed/_lib/include/plumed/asmjit/x86globals.h +535 -0
- plumed/_lib/include/plumed/asmjit/x86inst.h +2547 -0
- plumed/_lib/include/plumed/asmjit/x86instimpl_p.h +74 -0
- plumed/_lib/include/plumed/asmjit/x86internal_p.h +108 -0
- plumed/_lib/include/plumed/asmjit/x86logging_p.h +92 -0
- plumed/_lib/include/plumed/asmjit/x86misc.h +417 -0
- plumed/_lib/include/plumed/asmjit/x86operand.h +1133 -0
- plumed/_lib/include/plumed/asmjit/x86regalloc_p.h +734 -0
- plumed/_lib/include/plumed/asmjit/zone.h +1157 -0
- plumed/_lib/include/plumed/bias/Bias.h +82 -0
- plumed/_lib/include/plumed/bias/ReweightBase.h +58 -0
- plumed/_lib/include/plumed/blas/blas.h +253 -0
- plumed/_lib/include/plumed/blas/def_external.h +61 -0
- plumed/_lib/include/plumed/blas/def_internal.h +97 -0
- plumed/_lib/include/plumed/blas/real.h +49 -0
- plumed/_lib/include/plumed/cltools/CLTool.h +32 -0
- plumed/_lib/include/plumed/clusters/ClusteringBase.h +70 -0
- plumed/_lib/include/plumed/colvar/Colvar.h +32 -0
- plumed/_lib/include/plumed/colvar/ColvarInput.h +68 -0
- plumed/_lib/include/plumed/colvar/ColvarShortcut.h +81 -0
- plumed/_lib/include/plumed/colvar/CoordinationBase.h +52 -0
- plumed/_lib/include/plumed/colvar/MultiColvarTemplate.h +333 -0
- plumed/_lib/include/plumed/colvar/PathMSDBase.h +101 -0
- plumed/_lib/include/plumed/colvar/RMSDVector.h +78 -0
- plumed/_lib/include/plumed/config/Config.h +118 -0
- plumed/_lib/include/plumed/config/version.h +9 -0
- plumed/_lib/include/plumed/contour/ContourFindingObject.h +87 -0
- plumed/_lib/include/plumed/contour/DistanceFromContourBase.h +82 -0
- plumed/_lib/include/plumed/contour/FindContour.h +67 -0
- plumed/_lib/include/plumed/core/Action.h +540 -0
- plumed/_lib/include/plumed/core/ActionAnyorder.h +48 -0
- plumed/_lib/include/plumed/core/ActionAtomistic.h +343 -0
- plumed/_lib/include/plumed/core/ActionForInterface.h +99 -0
- plumed/_lib/include/plumed/core/ActionPilot.h +57 -0
- plumed/_lib/include/plumed/core/ActionRegister.h +124 -0
- plumed/_lib/include/plumed/core/ActionSet.h +163 -0
- plumed/_lib/include/plumed/core/ActionSetup.h +48 -0
- plumed/_lib/include/plumed/core/ActionShortcut.h +73 -0
- plumed/_lib/include/plumed/core/ActionToGetData.h +59 -0
- plumed/_lib/include/plumed/core/ActionToPutData.h +101 -0
- plumed/_lib/include/plumed/core/ActionWithArguments.h +140 -0
- plumed/_lib/include/plumed/core/ActionWithMatrix.h +87 -0
- plumed/_lib/include/plumed/core/ActionWithValue.h +258 -0
- plumed/_lib/include/plumed/core/ActionWithVector.h +94 -0
- plumed/_lib/include/plumed/core/ActionWithVirtualAtom.h +123 -0
- plumed/_lib/include/plumed/core/CLTool.h +177 -0
- plumed/_lib/include/plumed/core/CLToolMain.h +102 -0
- plumed/_lib/include/plumed/core/CLToolRegister.h +108 -0
- plumed/_lib/include/plumed/core/Colvar.h +115 -0
- plumed/_lib/include/plumed/core/DataPassingObject.h +94 -0
- plumed/_lib/include/plumed/core/DataPassingTools.h +54 -0
- plumed/_lib/include/plumed/core/DomainDecomposition.h +120 -0
- plumed/_lib/include/plumed/core/ExchangePatterns.h +47 -0
- plumed/_lib/include/plumed/core/FlexibleBin.h +63 -0
- plumed/_lib/include/plumed/core/GREX.h +61 -0
- plumed/_lib/include/plumed/core/GenericMolInfo.h +89 -0
- plumed/_lib/include/plumed/core/Group.h +41 -0
- plumed/_lib/include/plumed/core/ModuleMap.h +30 -0
- plumed/_lib/include/plumed/core/ParallelTaskManager.h +1023 -0
- plumed/_lib/include/plumed/core/PbcAction.h +61 -0
- plumed/_lib/include/plumed/core/PlumedMain.h +632 -0
- plumed/_lib/include/plumed/core/PlumedMainInitializer.h +118 -0
- plumed/_lib/include/plumed/core/RegisterBase.h +340 -0
- plumed/_lib/include/plumed/core/TargetDist.h +48 -0
- plumed/_lib/include/plumed/core/Value.h +547 -0
- plumed/_lib/include/plumed/core/WithCmd.h +93 -0
- plumed/_lib/include/plumed/dimred/SMACOF.h +55 -0
- plumed/_lib/include/plumed/drr/DRR.h +383 -0
- plumed/_lib/include/plumed/drr/colvar_UIestimator.h +777 -0
- plumed/_lib/include/plumed/fisst/legendre_rule_fast.h +44 -0
- plumed/_lib/include/plumed/function/Custom.h +54 -0
- plumed/_lib/include/plumed/function/Function.h +85 -0
- plumed/_lib/include/plumed/function/FunctionOfMatrix.h +368 -0
- plumed/_lib/include/plumed/function/FunctionOfScalar.h +135 -0
- plumed/_lib/include/plumed/function/FunctionOfVector.h +296 -0
- plumed/_lib/include/plumed/function/FunctionSetup.h +180 -0
- plumed/_lib/include/plumed/function/FunctionShortcut.h +130 -0
- plumed/_lib/include/plumed/function/FunctionWithSingleArgument.h +165 -0
- plumed/_lib/include/plumed/gridtools/ActionWithGrid.h +43 -0
- plumed/_lib/include/plumed/gridtools/EvaluateGridFunction.h +99 -0
- plumed/_lib/include/plumed/gridtools/FunctionOfGrid.h +295 -0
- plumed/_lib/include/plumed/gridtools/GridCoordinatesObject.h +179 -0
- plumed/_lib/include/plumed/gridtools/GridSearch.h +135 -0
- plumed/_lib/include/plumed/gridtools/Interpolator.h +45 -0
- plumed/_lib/include/plumed/gridtools/KDE.h +455 -0
- plumed/_lib/include/plumed/gridtools/RDF.h +40 -0
- plumed/_lib/include/plumed/gridtools/SumOfKernels.h +219 -0
- plumed/_lib/include/plumed/isdb/MetainferenceBase.h +398 -0
- plumed/_lib/include/plumed/lapack/def_external.h +207 -0
- plumed/_lib/include/plumed/lapack/def_internal.h +388 -0
- plumed/_lib/include/plumed/lapack/lapack.h +899 -0
- plumed/_lib/include/plumed/lapack/lapack_limits.h +79 -0
- plumed/_lib/include/plumed/lapack/real.h +50 -0
- plumed/_lib/include/plumed/lepton/CompiledExpression.h +164 -0
- plumed/_lib/include/plumed/lepton/CustomFunction.h +143 -0
- plumed/_lib/include/plumed/lepton/Exception.h +93 -0
- plumed/_lib/include/plumed/lepton/ExpressionProgram.h +137 -0
- plumed/_lib/include/plumed/lepton/ExpressionTreeNode.h +145 -0
- plumed/_lib/include/plumed/lepton/Lepton.h +85 -0
- plumed/_lib/include/plumed/lepton/MSVC_erfc.h +123 -0
- plumed/_lib/include/plumed/lepton/Operation.h +1302 -0
- plumed/_lib/include/plumed/lepton/ParsedExpression.h +165 -0
- plumed/_lib/include/plumed/lepton/Parser.h +111 -0
- plumed/_lib/include/plumed/lepton/windowsIncludes.h +73 -0
- plumed/_lib/include/plumed/mapping/Path.h +44 -0
- plumed/_lib/include/plumed/mapping/PathProjectionCalculator.h +57 -0
- plumed/_lib/include/plumed/matrixtools/MatrixOperationBase.h +54 -0
- plumed/_lib/include/plumed/matrixtools/MatrixTimesMatrix.h +309 -0
- plumed/_lib/include/plumed/matrixtools/MatrixTimesVectorBase.h +365 -0
- plumed/_lib/include/plumed/matrixtools/OuterProduct.h +238 -0
- plumed/_lib/include/plumed/maze/Core.h +65 -0
- plumed/_lib/include/plumed/maze/Loss.h +86 -0
- plumed/_lib/include/plumed/maze/Member.h +66 -0
- plumed/_lib/include/plumed/maze/Memetic.h +799 -0
- plumed/_lib/include/plumed/maze/Optimizer.h +357 -0
- plumed/_lib/include/plumed/maze/Random_MT.h +156 -0
- plumed/_lib/include/plumed/maze/Tools.h +183 -0
- plumed/_lib/include/plumed/metatomic/vesin.h +188 -0
- plumed/_lib/include/plumed/molfile/Gromacs.h +2013 -0
- plumed/_lib/include/plumed/molfile/endianswap.h +217 -0
- plumed/_lib/include/plumed/molfile/fastio.h +683 -0
- plumed/_lib/include/plumed/molfile/largefiles.h +78 -0
- plumed/_lib/include/plumed/molfile/libmolfile_plugin.h +77 -0
- plumed/_lib/include/plumed/molfile/molfile_plugin.h +1034 -0
- plumed/_lib/include/plumed/molfile/periodic_table.h +248 -0
- plumed/_lib/include/plumed/molfile/readpdb.h +447 -0
- plumed/_lib/include/plumed/molfile/vmdplugin.h +236 -0
- plumed/_lib/include/plumed/multicolvar/MultiColvarShortcuts.h +45 -0
- plumed/_lib/include/plumed/opes/ExpansionCVs.h +79 -0
- plumed/_lib/include/plumed/sasa/Sasa.h +32 -0
- plumed/_lib/include/plumed/secondarystructure/SecondaryStructureBase.h +372 -0
- plumed/_lib/include/plumed/setup/ActionSetup.h +25 -0
- plumed/_lib/include/plumed/small_vector/small_vector.h +6114 -0
- plumed/_lib/include/plumed/symfunc/CoordinationNumbers.h +41 -0
- plumed/_lib/include/plumed/tools/Angle.h +52 -0
- plumed/_lib/include/plumed/tools/AtomDistribution.h +138 -0
- plumed/_lib/include/plumed/tools/AtomNumber.h +152 -0
- plumed/_lib/include/plumed/tools/BiasRepresentation.h +106 -0
- plumed/_lib/include/plumed/tools/BitmaskEnum.h +167 -0
- plumed/_lib/include/plumed/tools/Brent1DRootSearch.h +159 -0
- plumed/_lib/include/plumed/tools/CheckInRange.h +44 -0
- plumed/_lib/include/plumed/tools/Citations.h +74 -0
- plumed/_lib/include/plumed/tools/ColvarOutput.h +118 -0
- plumed/_lib/include/plumed/tools/Communicator.h +316 -0
- plumed/_lib/include/plumed/tools/ConjugateGradient.h +80 -0
- plumed/_lib/include/plumed/tools/DLLoader.h +79 -0
- plumed/_lib/include/plumed/tools/ERMSD.h +73 -0
- plumed/_lib/include/plumed/tools/Exception.h +406 -0
- plumed/_lib/include/plumed/tools/File.h +28 -0
- plumed/_lib/include/plumed/tools/FileBase.h +153 -0
- plumed/_lib/include/plumed/tools/FileTools.h +37 -0
- plumed/_lib/include/plumed/tools/ForwardDecl.h +54 -0
- plumed/_lib/include/plumed/tools/Grid.h +638 -0
- plumed/_lib/include/plumed/tools/HistogramBead.h +136 -0
- plumed/_lib/include/plumed/tools/IFile.h +117 -0
- plumed/_lib/include/plumed/tools/KernelFunctions.h +113 -0
- plumed/_lib/include/plumed/tools/Keywords.h +380 -0
- plumed/_lib/include/plumed/tools/LatticeReduction.h +66 -0
- plumed/_lib/include/plumed/tools/LeptonCall.h +64 -0
- plumed/_lib/include/plumed/tools/LinkCells.h +126 -0
- plumed/_lib/include/plumed/tools/Log.h +41 -0
- plumed/_lib/include/plumed/tools/LoopUnroller.h +163 -0
- plumed/_lib/include/plumed/tools/Matrix.h +721 -0
- plumed/_lib/include/plumed/tools/MatrixSquareBracketsAccess.h +138 -0
- plumed/_lib/include/plumed/tools/MergeVectorTools.h +153 -0
- plumed/_lib/include/plumed/tools/Minimise1DBrent.h +244 -0
- plumed/_lib/include/plumed/tools/MinimiseBase.h +120 -0
- plumed/_lib/include/plumed/tools/MolDataClass.h +51 -0
- plumed/_lib/include/plumed/tools/NeighborList.h +112 -0
- plumed/_lib/include/plumed/tools/OFile.h +286 -0
- plumed/_lib/include/plumed/tools/OpenACC.h +180 -0
- plumed/_lib/include/plumed/tools/OpenMP.h +75 -0
- plumed/_lib/include/plumed/tools/PDB.h +154 -0
- plumed/_lib/include/plumed/tools/Pbc.h +139 -0
- plumed/_lib/include/plumed/tools/PlumedHandle.h +105 -0
- plumed/_lib/include/plumed/tools/RMSD.h +493 -0
- plumed/_lib/include/plumed/tools/Random.h +80 -0
- plumed/_lib/include/plumed/tools/RootFindingBase.h +79 -0
- plumed/_lib/include/plumed/tools/Stopwatch.h +475 -0
- plumed/_lib/include/plumed/tools/Subprocess.h +142 -0
- plumed/_lib/include/plumed/tools/SwitchingFunction.h +208 -0
- plumed/_lib/include/plumed/tools/Tensor.h +724 -0
- plumed/_lib/include/plumed/tools/TokenizedLine.h +123 -0
- plumed/_lib/include/plumed/tools/Tools.h +638 -0
- plumed/_lib/include/plumed/tools/Torsion.h +55 -0
- plumed/_lib/include/plumed/tools/TrajectoryParser.h +118 -0
- plumed/_lib/include/plumed/tools/Tree.h +61 -0
- plumed/_lib/include/plumed/tools/TypesafePtr.h +463 -0
- plumed/_lib/include/plumed/tools/Units.h +167 -0
- plumed/_lib/include/plumed/tools/Vector.h +433 -0
- plumed/_lib/include/plumed/tools/View.h +296 -0
- plumed/_lib/include/plumed/tools/View2D.h +100 -0
- plumed/_lib/include/plumed/tools/h36.h +39 -0
- plumed/_lib/include/plumed/vatom/ActionWithVirtualAtom.h +32 -0
- plumed/_lib/include/plumed/ves/BasisFunctions.h +380 -0
- plumed/_lib/include/plumed/ves/CoeffsBase.h +310 -0
- plumed/_lib/include/plumed/ves/CoeffsMatrix.h +220 -0
- plumed/_lib/include/plumed/ves/CoeffsVector.h +251 -0
- plumed/_lib/include/plumed/ves/FermiSwitchingFunction.h +74 -0
- plumed/_lib/include/plumed/ves/GridIntegrationWeights.h +50 -0
- plumed/_lib/include/plumed/ves/GridLinearInterpolation.h +81 -0
- plumed/_lib/include/plumed/ves/GridProjWeights.h +61 -0
- plumed/_lib/include/plumed/ves/LinearBasisSetExpansion.h +303 -0
- plumed/_lib/include/plumed/ves/Optimizer.h +444 -0
- plumed/_lib/include/plumed/ves/TargetDistModifer.h +53 -0
- plumed/_lib/include/plumed/ves/TargetDistribution.h +266 -0
- plumed/_lib/include/plumed/ves/VesBias.h +545 -0
- plumed/_lib/include/plumed/ves/VesTools.h +142 -0
- plumed/_lib/include/plumed/ves/WaveletGrid.h +75 -0
- plumed/_lib/include/plumed/volumes/ActionVolume.h +268 -0
- plumed/_lib/include/plumed/volumes/VolumeShortcut.h +147 -0
- plumed/_lib/include/plumed/wrapper/Plumed.h +5025 -0
- plumed/_lib/include/plumed/xdrfile/xdrfile.h +663 -0
- plumed/_lib/include/plumed/xdrfile/xdrfile_trr.h +89 -0
- plumed/_lib/include/plumed/xdrfile/xdrfile_xtc.h +90 -0
- plumed/_lib/lib/PythonCVInterface.dylib +0 -0
- plumed/_lib/lib/libplumed.dylib +0 -0
- plumed/_lib/lib/libplumedKernel.dylib +0 -0
- plumed/_lib/lib/libplumedWrapper.a +0 -0
- plumed/_lib/lib/pkgconfig/plumed.pc +13 -0
- plumed/_lib/lib/pkgconfig/plumedInternals.pc +13 -0
- plumed/_lib/lib/pkgconfig/plumedWrapper.pc +13 -0
- plumed/_lib/lib/plumed/fortran/plumed.f90 +879 -0
- plumed/_lib/lib/plumed/fortran/plumed_f08.f90 +2625 -0
- plumed/_lib/lib/plumed/modulefile +69 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.config +43 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt +543 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt.preplumed +540 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp +1628 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1590 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h +103 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h.preplumed +99 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp +2527 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2513 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +408 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +394 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp +2348 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2091 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp +3573 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3495 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1506 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1402 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp +997 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +906 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp +2780 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2738 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.config +43 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt +549 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt.preplumed +546 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h +104 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp +2624 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2610 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +409 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +395 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp +2419 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2164 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp +3546 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3468 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp +991 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +900 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp +2895 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2849 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp +886 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +880 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +347 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +345 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.config +43 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt +575 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt.preplumed +572 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h +104 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp +2564 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2550 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h +410 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +396 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp +2435 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp.preplumed +2187 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp +3592 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3514 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp +958 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp.preplumed +929 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp +2987 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp.preplumed +2941 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp +904 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +898 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +353 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +351 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.config +39 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake +82 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake.preplumed +82 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp +162 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp.preplumed +154 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp +107 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp.preplumed +99 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h +120 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h.preplumed +111 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp +215 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp.preplumed +197 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h +87 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h.preplumed +86 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp +2971 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp.preplumed +2970 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h +430 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h.preplumed +429 -0
- plumed/_lib/lib/plumed/patches/namd-2.12.config +30 -0
- plumed/_lib/lib/plumed/patches/namd-2.12.diff +267 -0
- plumed/_lib/lib/plumed/patches/namd-2.13.config +30 -0
- plumed/_lib/lib/plumed/patches/namd-2.13.diff +267 -0
- plumed/_lib/lib/plumed/patches/namd-2.14.config +30 -0
- plumed/_lib/lib/plumed/patches/namd-2.14.diff +268 -0
- plumed/_lib/lib/plumed/patches/patch.sh +500 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.config +25 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90 +368 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90.preplumed +366 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90 +71 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90.preplumed +24 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90 +62 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90 +189 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90.preplumed +185 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.config +26 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90 +422 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90.preplumed +420 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90 +70 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90 +62 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90 +233 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90.preplumed +230 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.config +28 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile +175 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile.preplumed +171 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90 +486 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90.preplumed +484 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90 +74 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90 +64 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90 +532 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90.preplumed +518 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.config +28 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile +249 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile.preplumed +244 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90 +532 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90.preplumed +535 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90 +74 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90 +64 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90 +569 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90.preplumed +560 -0
- plumed/_lib/lib/plumed/plumed-config +9 -0
- plumed/_lib/lib/plumed/plumed-mklib +9 -0
- plumed/_lib/lib/plumed/plumed-newcv +9 -0
- plumed/_lib/lib/plumed/plumed-partial_tempering +9 -0
- plumed/_lib/lib/plumed/plumed-patch +9 -0
- plumed/_lib/lib/plumed/plumed-runtime +0 -0
- plumed/_lib/lib/plumed/plumed-selector +9 -0
- plumed/_lib/lib/plumed/plumed-vim2html +9 -0
- plumed/_lib/lib/plumed/scripts/config.sh +126 -0
- plumed/_lib/lib/plumed/scripts/mklib.sh +175 -0
- plumed/_lib/lib/plumed/scripts/newcv.sh +26 -0
- plumed/_lib/lib/plumed/scripts/partial_tempering.sh +319 -0
- plumed/_lib/lib/plumed/scripts/patch.sh +4 -0
- plumed/_lib/lib/plumed/scripts/selector.sh +234 -0
- plumed/_lib/lib/plumed/scripts/vim2html.sh +190 -0
- plumed/_lib/lib/plumed/src/colvar/Template.cpp +116 -0
- plumed/_lib/lib/plumed/src/config/compile_options.sh +3 -0
- plumed/_lib/lib/plumed/src/config/config.txt +181 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake +6 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake.runtime +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake.shared +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake.static +3 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc +6 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc.runtime +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc.shared +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc.static +3 -0
- plumed/_lib/lib/plumed/vim/scripts.vim +6 -0
- plumed/_plumed_core.cpython-311-darwin.so +0 -0
- plumed/_plumed_core.cpython-312-darwin.so +0 -0
- plumed/_plumed_core.cpython-313-darwin.so +0 -0
- plumed/_plumed_core.cpython-314-darwin.so +0 -0
- plumedCommunications.cpython-311-darwin.so +0 -0
- plumedCommunications.cpython-312-darwin.so +0 -0
- plumedCommunications.cpython-313-darwin.so +0 -0
- plumedCommunications.cpython-314-darwin.so +0 -0
- plumedCommunications.pyi +431 -0
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
#! /usr/bin/env bash
|
|
2
|
+
# vim:ft=python
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
# WARNING: keep these in synch with the python code below:
|
|
6
|
+
if [ "$#" = 1 ]; then
|
|
7
|
+
if [ "$1" = "--description" ] ; then
|
|
8
|
+
echo "create lists of serial atom numbers"
|
|
9
|
+
exit 0
|
|
10
|
+
fi
|
|
11
|
+
if [ "$1" = "--options" ] ; then
|
|
12
|
+
echo "--description --help -h --options --pdb"
|
|
13
|
+
exit 0
|
|
14
|
+
fi
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
PYTHON_BIN="${PYTHON_BIN-python}"
|
|
18
|
+
PLUMED_PYTHON_BIN="${PLUMED_PYTHON_BIN-${PYTHON_BIN}}"
|
|
19
|
+
TEMP=$(mktemp -t plumed.XXXXXX)
|
|
20
|
+
trap "rm -rf $TEMP" EXIT
|
|
21
|
+
cat > $TEMP << \EOF
|
|
22
|
+
# here's the real script
|
|
23
|
+
|
|
24
|
+
from __future__ import print_function
|
|
25
|
+
import sys
|
|
26
|
+
import re
|
|
27
|
+
import readline
|
|
28
|
+
|
|
29
|
+
# When possible, we use python3 specific stuff
|
|
30
|
+
if (sys.version_info > (3, 0)):
|
|
31
|
+
_HAS_PYTHON3=True
|
|
32
|
+
else:
|
|
33
|
+
_HAS_PYTHON3=False
|
|
34
|
+
|
|
35
|
+
def read_mda(path):
|
|
36
|
+
import MDAnalysis
|
|
37
|
+
return MDAnalysis.Universe(path)
|
|
38
|
+
|
|
39
|
+
def read_mdt(path):
|
|
40
|
+
import mdtraj
|
|
41
|
+
return mdtraj.load(path).top
|
|
42
|
+
|
|
43
|
+
def read_vmd(path):
|
|
44
|
+
import vmd as vmd_python
|
|
45
|
+
return vmd_python.molecule.load("pdb",path)
|
|
46
|
+
|
|
47
|
+
def read_vmdexec(path):
|
|
48
|
+
import subprocess
|
|
49
|
+
vmdexec = subprocess.Popen(["vmd", "-dispdev", "none",path,"-eofexit"],
|
|
50
|
+
stdin=subprocess.PIPE, stdout=subprocess.PIPE,universal_newlines=True)
|
|
51
|
+
# print("fconfigure stdout -buffering none",file=vmd.stdin) # does not work as expected
|
|
52
|
+
vmdexec.stdin.flush()
|
|
53
|
+
return vmdexec
|
|
54
|
+
|
|
55
|
+
dummyline="DUMMYLINE"
|
|
56
|
+
|
|
57
|
+
def select_vmdexec(vmdexec,selection):
|
|
58
|
+
import os
|
|
59
|
+
try:
|
|
60
|
+
bufferlines=int(os.environ['PLUMED_VMD_BUFFERLINES'])
|
|
61
|
+
except KeyError:
|
|
62
|
+
bufferlines=1000
|
|
63
|
+
|
|
64
|
+
print("puts 'NEXT'",file=vmdexec.stdin)
|
|
65
|
+
print("[atomselect top { " + selection + " }] get index\n",file=vmdexec.stdin)
|
|
66
|
+
for i in range(bufferlines):
|
|
67
|
+
print("puts '"+dummyline+"'",file=vmdexec.stdin)
|
|
68
|
+
# print("for {set i 1} {$i < 2000} {incr i} { puts '" + dummyline +"' }",file=vmdexec.stdin) # does not work
|
|
69
|
+
print("flush stdout",file=vmdexec.stdin) # useless
|
|
70
|
+
vmdexec.stdin.flush()
|
|
71
|
+
is_next=False
|
|
72
|
+
is_error=False
|
|
73
|
+
error_msg=""
|
|
74
|
+
for line in vmdexec.stdout:
|
|
75
|
+
lines=line.rstrip()
|
|
76
|
+
if is_error:
|
|
77
|
+
if(lines=="'"+dummyline+"'"):
|
|
78
|
+
raise RuntimeError(error_msg)
|
|
79
|
+
error_msg+=" " + lines
|
|
80
|
+
elif is_next:
|
|
81
|
+
if re.match(".*ERROR.*",line):
|
|
82
|
+
is_error=True
|
|
83
|
+
else:
|
|
84
|
+
sel=[]
|
|
85
|
+
for w in line.split():
|
|
86
|
+
if not w.isdigit():
|
|
87
|
+
sel=[]
|
|
88
|
+
break
|
|
89
|
+
sel.append(int(w))
|
|
90
|
+
return sel
|
|
91
|
+
elif(lines=="'NEXT'"):
|
|
92
|
+
is_next=True
|
|
93
|
+
|
|
94
|
+
path=None
|
|
95
|
+
|
|
96
|
+
mda=None
|
|
97
|
+
mdt=None
|
|
98
|
+
vmdexec=None
|
|
99
|
+
vmd=None
|
|
100
|
+
|
|
101
|
+
help="""
|
|
102
|
+
Example:
|
|
103
|
+
echo "
|
|
104
|
+
mda:nucleic
|
|
105
|
+
mdt:resname RG
|
|
106
|
+
" | selector.sh --pdb ref.pdb
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
for i in range(1,len(sys.argv)):
|
|
111
|
+
opt=sys.argv[i]
|
|
112
|
+
if opt=="-h" or opt=="--help":
|
|
113
|
+
print(help)
|
|
114
|
+
sys.exit(0)
|
|
115
|
+
# WARNING: keep these in synch with the bash code above
|
|
116
|
+
elif opt=="--description":
|
|
117
|
+
print("create lists of serial atom numbers")
|
|
118
|
+
sys.exit(0)
|
|
119
|
+
elif opt=="--options":
|
|
120
|
+
print("--description --help -h --options --pdb")
|
|
121
|
+
sys.exit(0)
|
|
122
|
+
elif opt=="--pdb":
|
|
123
|
+
path=sys.argv[i+1]
|
|
124
|
+
|
|
125
|
+
while True:
|
|
126
|
+
try:
|
|
127
|
+
if _HAS_PYTHON3:
|
|
128
|
+
input_=input("")
|
|
129
|
+
else:
|
|
130
|
+
input_=raw_input("")
|
|
131
|
+
except EOFError:
|
|
132
|
+
break
|
|
133
|
+
input_=re.sub("#.*","",input_)
|
|
134
|
+
cmd=re.sub(":.*$","",input_)
|
|
135
|
+
arg=re.sub("^[^:]*:","",input_)
|
|
136
|
+
if cmd == "" :
|
|
137
|
+
continue
|
|
138
|
+
elif cmd == "quit" :
|
|
139
|
+
sys.exit(0)
|
|
140
|
+
elif cmd == "pdb" :
|
|
141
|
+
path=arg
|
|
142
|
+
mda=None
|
|
143
|
+
mdt=None
|
|
144
|
+
vmd=None
|
|
145
|
+
vmdexec=None
|
|
146
|
+
else:
|
|
147
|
+
if path is None:
|
|
148
|
+
sys.stdout.write("Error: provide pdb file");
|
|
149
|
+
sys.stdout.write("\n")
|
|
150
|
+
sys.stdout.flush()
|
|
151
|
+
if cmd == "mda" :
|
|
152
|
+
if mda is None:
|
|
153
|
+
try:
|
|
154
|
+
mda=read_mda(path)
|
|
155
|
+
except Exception as e:
|
|
156
|
+
sys.stdout.write("Error importing MDAnalysis module: ");
|
|
157
|
+
sys.stdout.write(str(e));
|
|
158
|
+
sys.stdout.write("\n")
|
|
159
|
+
sys.stdout.flush()
|
|
160
|
+
continue
|
|
161
|
+
try:
|
|
162
|
+
sel=mda.select_atoms(arg).indices
|
|
163
|
+
except Exception as e:
|
|
164
|
+
sys.stdout.write("Error parsing MDAnalysis expression: ");
|
|
165
|
+
sys.stdout.write(str(e));
|
|
166
|
+
sys.stdout.write("\n")
|
|
167
|
+
sys.stdout.flush()
|
|
168
|
+
continue
|
|
169
|
+
elif cmd == "mdt" :
|
|
170
|
+
if mdt is None:
|
|
171
|
+
try:
|
|
172
|
+
mdt=read_mdt(path)
|
|
173
|
+
except Exception as e:
|
|
174
|
+
sys.stdout.write("Error importing mdtraj module: ");
|
|
175
|
+
sys.stdout.write(str(e));
|
|
176
|
+
sys.stdout.write("\n")
|
|
177
|
+
sys.stdout.flush()
|
|
178
|
+
continue
|
|
179
|
+
try:
|
|
180
|
+
sel=mdt.select(arg)
|
|
181
|
+
except Exception as e:
|
|
182
|
+
sys.stdout.write("Error parsing mdtraj expression: ");
|
|
183
|
+
sys.stdout.write(str(e));
|
|
184
|
+
sys.stdout.write("\n")
|
|
185
|
+
sys.stdout.flush()
|
|
186
|
+
continue
|
|
187
|
+
elif cmd == "vmd" :
|
|
188
|
+
if vmd is None:
|
|
189
|
+
try:
|
|
190
|
+
vmd=read_vmd(path)
|
|
191
|
+
except Exception as e:
|
|
192
|
+
sys.stdout.write("Error importing vmd_python module: ");
|
|
193
|
+
sys.stdout.write(str(e));
|
|
194
|
+
sys.stdout.write("\n")
|
|
195
|
+
sys.stdout.flush()
|
|
196
|
+
continue
|
|
197
|
+
try:
|
|
198
|
+
import vmd as vmd_python
|
|
199
|
+
sel=vmd_python.atomsel(arg, vmd).index
|
|
200
|
+
except Exception as e:
|
|
201
|
+
sys.stdout.write("Error parsing vmd-python expression: ");
|
|
202
|
+
sys.stdout.write(str(e));
|
|
203
|
+
sys.stdout.write("\n")
|
|
204
|
+
sys.stdout.flush()
|
|
205
|
+
continue
|
|
206
|
+
elif cmd == "vmdexec" :
|
|
207
|
+
if vmdexec is None:
|
|
208
|
+
vmdexec=read_vmdexec(path)
|
|
209
|
+
try:
|
|
210
|
+
sel=select_vmdexec(vmdexec,arg)
|
|
211
|
+
except Exception as e:
|
|
212
|
+
sys.stdout.write("Error parsing vmd expression: ");
|
|
213
|
+
sys.stdout.write(str(e));
|
|
214
|
+
sys.stdout.write("\n")
|
|
215
|
+
sys.stdout.flush()
|
|
216
|
+
continue
|
|
217
|
+
else:
|
|
218
|
+
sys.stdout.write("Error: unknown command ")
|
|
219
|
+
sys.stdout.write(cmd)
|
|
220
|
+
sys.stdout.write("\n")
|
|
221
|
+
sys.stdout.flush()
|
|
222
|
+
outstr="Selection:"
|
|
223
|
+
for i in range(len(sel)):
|
|
224
|
+
outstr+=" "
|
|
225
|
+
outstr+=str(sel[i]+1)
|
|
226
|
+
outstr+="\n"
|
|
227
|
+
sys.stdout.write(outstr)
|
|
228
|
+
sys.stdout.flush()
|
|
229
|
+
|
|
230
|
+
EOF
|
|
231
|
+
|
|
232
|
+
set -e
|
|
233
|
+
|
|
234
|
+
"${PLUMED_PYTHON_BIN}" $TEMP $@
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
#! /usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
VIMFILE="$PLUMED_ROOT/vim/syntax/plumed.vim"
|
|
4
|
+
|
|
5
|
+
if [ "$1" = --description ] ; then
|
|
6
|
+
echo "convert plumed input file to colored html using vim syntax"
|
|
7
|
+
exit 0
|
|
8
|
+
fi
|
|
9
|
+
|
|
10
|
+
if [ "$1" = --options ] ; then
|
|
11
|
+
echo "--description --options --annotate-syntax --pdf --crop --fs --colors"
|
|
12
|
+
exit 0
|
|
13
|
+
fi
|
|
14
|
+
|
|
15
|
+
if [ "$1" = --help ] ; then
|
|
16
|
+
cat << EOF
|
|
17
|
+
Usage:
|
|
18
|
+
plumed vim2html [options] < input > output
|
|
19
|
+
plumed vim2html [options] input > output
|
|
20
|
+
plumed vim2html [options] input output
|
|
21
|
+
(one of the three)
|
|
22
|
+
|
|
23
|
+
Options can be:
|
|
24
|
+
--annotate-syntax Reports annotated syntax on output.
|
|
25
|
+
Also reports non-annotated regions on stderr
|
|
26
|
+
--pdf To produce a pdf file with syntax highlighting.
|
|
27
|
+
--crop Crop the pdf file to the only written part. Useful to insert the pdf in a LaTex file as image.
|
|
28
|
+
--fs Specify the fontsize of the pdf output.
|
|
29
|
+
--colors Specify the color palette. Allowed values are: default/ac
|
|
30
|
+
EOF
|
|
31
|
+
exit 0
|
|
32
|
+
fi
|
|
33
|
+
|
|
34
|
+
if [ ! -f "$VIMFILE" ] ; then
|
|
35
|
+
echo "Cannot find vimfile at $VIMFILE"
|
|
36
|
+
exit 1
|
|
37
|
+
fi
|
|
38
|
+
|
|
39
|
+
annotate_syntax=no
|
|
40
|
+
inputfile=""
|
|
41
|
+
outputfile=""
|
|
42
|
+
pdf=no
|
|
43
|
+
crop=no
|
|
44
|
+
fontsize=7.5
|
|
45
|
+
prefix=""
|
|
46
|
+
colors=""
|
|
47
|
+
for opt
|
|
48
|
+
do
|
|
49
|
+
prefixopt="$prefix$opt"
|
|
50
|
+
prefix=""
|
|
51
|
+
case "$prefixopt" in
|
|
52
|
+
(--annotate-syntax)
|
|
53
|
+
annotate_syntax=yes ;;
|
|
54
|
+
(--pdf)
|
|
55
|
+
pdf=yes;;
|
|
56
|
+
(--crop)
|
|
57
|
+
crop=yes;;
|
|
58
|
+
(--fs)
|
|
59
|
+
prefix="--fs=";;
|
|
60
|
+
(--fs=*)
|
|
61
|
+
fontsize="${prefixopt#--fs=}";;
|
|
62
|
+
(--colors)
|
|
63
|
+
prefix="--colors=";;
|
|
64
|
+
(--colors=*)
|
|
65
|
+
colors="${prefixopt#--colors=}";;
|
|
66
|
+
(-*)
|
|
67
|
+
echo "ERROR: Unknown option $opt. Use -h for help."
|
|
68
|
+
exit 1 ;;
|
|
69
|
+
(*)
|
|
70
|
+
if [ -z "$inputfile" ] ; then
|
|
71
|
+
inputfile="$opt"
|
|
72
|
+
elif [ -z "$outputfile" ] ; then
|
|
73
|
+
outputfile="$opt" ;
|
|
74
|
+
else
|
|
75
|
+
echo "ERROR: too many arguments"
|
|
76
|
+
exit 1
|
|
77
|
+
fi
|
|
78
|
+
esac
|
|
79
|
+
done
|
|
80
|
+
temp="$( mktemp -dt plumed.XXXXX)"
|
|
81
|
+
|
|
82
|
+
{
|
|
83
|
+
if [ -n "$inputfile" ] ; then
|
|
84
|
+
cat "$inputfile"
|
|
85
|
+
else
|
|
86
|
+
cat
|
|
87
|
+
# this is to remove \r characters
|
|
88
|
+
fi | tr '\r' ' '
|
|
89
|
+
} | {
|
|
90
|
+
cd $temp
|
|
91
|
+
{
|
|
92
|
+
|
|
93
|
+
case "$colors" in
|
|
94
|
+
(ac)
|
|
95
|
+
cat > $temp/colors.vim << EOF
|
|
96
|
+
: set bg=dark
|
|
97
|
+
: hi Statement ctermfg=5 cterm=bold guifg=#ffff60 gui=none
|
|
98
|
+
: highlight Type ctermfg=2 cterm=bold
|
|
99
|
+
: hi Comment guifg=#80a0ff ctermfg=darkblue
|
|
100
|
+
: hi Constant ctermfg=red guifg=#ffa0a0 cterm=bold
|
|
101
|
+
EOF
|
|
102
|
+
;;
|
|
103
|
+
(*)
|
|
104
|
+
echo > $temp/colors.vim
|
|
105
|
+
;;
|
|
106
|
+
esac
|
|
107
|
+
|
|
108
|
+
if [ "$pdf" = "yes" ]; then
|
|
109
|
+
|
|
110
|
+
# this is a workaround for a bug in TOhtml
|
|
111
|
+
# that does not color properly when there are empty lines
|
|
112
|
+
sed "s/^$/ /" |
|
|
113
|
+
vim - -c ":syntax off" \
|
|
114
|
+
-c ":source $VIMFILE" \
|
|
115
|
+
-c ":source $temp/colors.vim" \
|
|
116
|
+
-c ":set printoptions=header:0" \
|
|
117
|
+
-c ":set printfont=courier:h$fontsize" \
|
|
118
|
+
-c ":hardcopy > out.ps" \
|
|
119
|
+
-c ":q!" 1> /dev/null 2> /dev/null
|
|
120
|
+
else
|
|
121
|
+
if [ "$annotate_syntax" = "yes" ]; then
|
|
122
|
+
|
|
123
|
+
vim - -c ":syntax off" \
|
|
124
|
+
-c ":source $VIMFILE" \
|
|
125
|
+
-c ":call PlumedAnnotateSyntax()" \
|
|
126
|
+
-c ":wq! syntax.log" -c ":q!" 1> /dev/null 2> /dev/null
|
|
127
|
+
|
|
128
|
+
else
|
|
129
|
+
# this is a workaround for a bug in TOhtml
|
|
130
|
+
# that does not color properly when there are empty lines
|
|
131
|
+
sed "s/^$/ /" |
|
|
132
|
+
vim - -c ":syntax off" \
|
|
133
|
+
-c ":source $VIMFILE" \
|
|
134
|
+
-c ":source $temp/colors.vim" \
|
|
135
|
+
-c ":let g:html_use_css = 0" \
|
|
136
|
+
-c ":let g:html_no_progress" \
|
|
137
|
+
-c ":let g:html_number_lines = 1" \
|
|
138
|
+
-c ":TOhtml" \
|
|
139
|
+
-c ":wq! out.html" -c ":q!" 1> /dev/null 2> /dev/null
|
|
140
|
+
fi
|
|
141
|
+
fi
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if [ "$pdf" = "yes" ]; then
|
|
148
|
+
ps2pdf $temp/out.ps $temp/out.pdf
|
|
149
|
+
output="$temp/out.pdf"
|
|
150
|
+
if [ "$crop" = "yes" ]; then
|
|
151
|
+
(cd $temp; pdfcrop $temp/out.pdf $temp/outcrop.pdf > /dev/null )
|
|
152
|
+
output="$temp/outcrop.pdf"
|
|
153
|
+
fi
|
|
154
|
+
else
|
|
155
|
+
if [ "$annotate_syntax" = "yes" ] ; then
|
|
156
|
+
output="$(awk '{if($1=="ANNOTATION") print}' $temp/syntax.log 2>/dev/null)"
|
|
157
|
+
error="$(awk '{if($1=="ERROR") print}' $temp/syntax.log >&2 2>/dev/null)"
|
|
158
|
+
else
|
|
159
|
+
output="$(cat $temp/out.html | sed 's|^<title>.*</title>$||' | sed 's|^<meta.*$||')"
|
|
160
|
+
fi
|
|
161
|
+
fi
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
if [ "$pdf" = "yes" ]; then
|
|
165
|
+
if [ -n "$outputfile" ] ; then
|
|
166
|
+
cp $output $outputfile
|
|
167
|
+
else
|
|
168
|
+
echo "You should specify an output file if using pdf option!"
|
|
169
|
+
exit 1;
|
|
170
|
+
fi
|
|
171
|
+
else
|
|
172
|
+
|
|
173
|
+
if [ -n "$outputfile" ] ; then
|
|
174
|
+
echo "$output" > "$outputfile"
|
|
175
|
+
else
|
|
176
|
+
echo "$output"
|
|
177
|
+
fi
|
|
178
|
+
|
|
179
|
+
fi
|
|
180
|
+
|
|
181
|
+
echo "$error" >&2
|
|
182
|
+
|
|
183
|
+
if [ -n "$error" ] ; then
|
|
184
|
+
exit 1
|
|
185
|
+
fi
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
2
|
+
Copyright (c) 2011-2023 The plumed team
|
|
3
|
+
(see the PEOPLE file at the root of the distribution for a list of names)
|
|
4
|
+
|
|
5
|
+
See http://www.plumed.org for more information.
|
|
6
|
+
|
|
7
|
+
This file is part of plumed, version 2.
|
|
8
|
+
|
|
9
|
+
plumed is free software: you can redistribute it and/or modify
|
|
10
|
+
it under the terms of the GNU Lesser General Public License as published by
|
|
11
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
(at your option) any later version.
|
|
13
|
+
|
|
14
|
+
plumed is distributed in the hope that it will be useful,
|
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
GNU Lesser General Public License for more details.
|
|
18
|
+
|
|
19
|
+
You should have received a copy of the GNU Lesser General Public License
|
|
20
|
+
along with plumed. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
|
|
22
|
+
#include "Colvar.h"
|
|
23
|
+
#include "core/ActionRegister.h"
|
|
24
|
+
|
|
25
|
+
namespace PLMD {
|
|
26
|
+
namespace colvar {
|
|
27
|
+
|
|
28
|
+
//+PLUMEDOC COLVAR TEMPLATE
|
|
29
|
+
/*
|
|
30
|
+
This file provides a template for if you want to introduce a new CV.
|
|
31
|
+
|
|
32
|
+
The descrition of the CV that you include here will appear in the further details and examples
|
|
33
|
+
section of the manual
|
|
34
|
+
|
|
35
|
+
You can (and should) include examples showing how to use your CV as follows:
|
|
36
|
+
|
|
37
|
+
```plumed
|
|
38
|
+
# This should be a sample input.
|
|
39
|
+
t: TEMPLATE ATOMS=1,2
|
|
40
|
+
PRINT ARG=t STRIDE=100 FILE=COLVAR
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
*/
|
|
44
|
+
//+ENDPLUMEDOC
|
|
45
|
+
|
|
46
|
+
class Template : public Colvar {
|
|
47
|
+
bool pbc;
|
|
48
|
+
|
|
49
|
+
public:
|
|
50
|
+
explicit Template(const ActionOptions&);
|
|
51
|
+
// active methods:
|
|
52
|
+
void calculate() override;
|
|
53
|
+
static void registerKeywords(Keywords& keys);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
PLUMED_REGISTER_ACTION(Template,"TEMPLATE")
|
|
57
|
+
|
|
58
|
+
void Template::registerKeywords(Keywords& keys) {
|
|
59
|
+
Colvar::registerKeywords(keys);
|
|
60
|
+
keys.addFlag("TEMPLATE_DEFAULT_OFF_FLAG",false,"flags that are by default not performed should be specified like this");
|
|
61
|
+
keys.add("compulsory","TEMPLATE_COMPULSORY","all compulsory keywords should be added like this with a description here");
|
|
62
|
+
keys.add("optional","TEMPLATE_OPTIONAL","all optional keywords that have input should be added like a description here");
|
|
63
|
+
keys.add("atoms","ATOMS","the keyword with which you specify what atoms to use should be added like this");
|
|
64
|
+
keys.setValueDescription("scalar","a description of the value that is computed by this colvar should be included here");
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
Template::Template(const ActionOptions&ao):
|
|
68
|
+
PLUMED_COLVAR_INIT(ao),
|
|
69
|
+
pbc(true) {
|
|
70
|
+
std::vector<AtomNumber> atoms;
|
|
71
|
+
parseAtomList("ATOMS",atoms);
|
|
72
|
+
if(atoms.size()!=2) {
|
|
73
|
+
error("Number of specified atoms should be 2");
|
|
74
|
+
}
|
|
75
|
+
bool nopbc=!pbc;
|
|
76
|
+
parseFlag("NOPBC",nopbc);
|
|
77
|
+
pbc=!nopbc;
|
|
78
|
+
checkRead();
|
|
79
|
+
|
|
80
|
+
log.printf(" between atoms %d %d\n",atoms[0].serial(),atoms[1].serial());
|
|
81
|
+
if(pbc) {
|
|
82
|
+
log.printf(" using periodic boundary conditions\n");
|
|
83
|
+
} else {
|
|
84
|
+
log.printf(" without periodic boundary conditions\n");
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
addValueWithDerivatives();
|
|
88
|
+
setNotPeriodic();
|
|
89
|
+
|
|
90
|
+
requestAtoms(atoms);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
// calculator
|
|
95
|
+
void Template::calculate() {
|
|
96
|
+
|
|
97
|
+
Vector distance;
|
|
98
|
+
if(pbc) {
|
|
99
|
+
distance=pbcDistance(getPosition(0),getPosition(1));
|
|
100
|
+
} else {
|
|
101
|
+
distance=delta(getPosition(0),getPosition(1));
|
|
102
|
+
}
|
|
103
|
+
const double value=distance.modulo();
|
|
104
|
+
const double invvalue=1.0/value;
|
|
105
|
+
|
|
106
|
+
setAtomsDerivatives(0,-invvalue*distance);
|
|
107
|
+
setAtomsDerivatives(1,invvalue*distance);
|
|
108
|
+
setBoxDerivatives (-invvalue*Tensor(distance,distance));
|
|
109
|
+
setValue (value);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
compile='clang++ -c -I"$PLUMED_INCLUDEDIR/$PLUMED_PROGRAM_NAME"/ -DPACKAGE_NAME="PLUMED" -DPACKAGE_TARNAME="plumed" -DPACKAGE_VERSION="2" -DPACKAGE_STRING="PLUMED 2" -DPACKAGE_BUGREPORT="" -DPACKAGE_URL="" -D__PLUMED_WRAPPER_LIBCXX11=1 -D__PLUMED_CXX17_FILESYSTEM=1 -D__PLUMED_HAS_EXTERNAL_BLAS=1 -D__PLUMED_HAS_EXTERNAL_LAPACK=1 -D__PLUMED_BLAS_RETURNS_FLOAT=double -D__PLUMED_LAPACK_RETURNS_FLOAT=double -D__PLUMED_HAS_MOLFILE_PLUGINS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -D__PLUMED_HAS_DLADDR=1 -D__PLUMED_HAS_ASMJIT=1 -D__PLUMED_HAS_DLOPEN=1 -D__PLUMED_HAS_RTLD_DEFAULT=1 -D__PLUMED_HAS_SUBPROCESS=1 -D__PLUMED_HAS_EXECINFO=1 -D__PLUMED_HAS_ZLIB=1 -DNDEBUG=1 -D_REENTRANT=1 -D__PLUMED_PROGRAM_NAME="plumed" -D__PLUMED_SOEXT="dylib" -O3 -fPIC -Wall -pedantic -Wno-unknown-pragmas -std=c++17 '
|
|
2
|
+
link_installed='clang++ -dynamiclib -Wl,-headerpad_max_install_names -lstdc++ -lz -ldl -llapack -lblas -Wl,-rpath,@loader_path/../lib /Users/runner/work/hillclimber/hillclimber/src/plumed/_lib/lib/libplumedKernel.dylib'
|
|
3
|
+
soext='dylib'
|