/* -------------------------------------------------------------------------- * * OpenMM * * -------------------------------------------------------------------------- * * This is part of the OpenMM molecular simulation toolkit originating from * * Simbios, the NIH National Center for Physics-Based Simulation of * * Biological Structures at Stanford, funded under the NIH Roadmap for * * Medical Research, grant U54 GM072970. See https://simtk.org. * * * * Portions copyright (c) 2010 Stanford University and the Authors. * * Authors: Peter Eastman, Yutong Zhao * * Contributors: * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the "Software"), * * to deal in the Software without restriction, including without limitation * * the rights to use, copy, modify, merge, publish, distribute, sublicense, * * and/or sell copies of the Software, and to permit persons to whom the * * Software is furnished to do so, subject to the following conditions: * * * * The above copyright notice and this permission notice shall be included in * * all copies or substantial portions of the Software. * * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * * USE OR OTHER DEALINGS IN THE SOFTWARE. * * -------------------------------------------------------------------------- */ #include "openmm/serialization/CustomIntegratorProxy.h" #include using namespace std; using namespace OpenMM; CustomIntegratorProxy::CustomIntegratorProxy() : SerializationProxy("CustomIntegrator") { } void CustomIntegratorProxy::serialize(const void* object, SerializationNode& node) const { node.setIntProperty("version", 1); const CustomIntegrator& integrator = *reinterpret_cast(object); SerializationNode& globalVariablesNode = node.createChildNode("GlobalVariables"); for(int i=0; i perDofValues; integrator.getPerDofVariable(i, perDofValues); for(int j=0; j(computationType)) .setStringProperty("computationVariable",computationVariable).setStringProperty("computationExpression",computationExpression); } node.setStringProperty("kineticEnergyExpression",integrator.getKineticEnergyExpression()); node.setIntProperty("randomSeed",integrator.getRandomNumberSeed()); node.setDoubleProperty("stepSize",integrator.getStepSize()); node.setDoubleProperty("constraintTolerance",integrator.getConstraintTolerance()); } void* CustomIntegratorProxy::deserialize(const SerializationNode& node) const { if (node.getIntProperty("version") != 1) throw OpenMMException("Unsupported version number"); CustomIntegrator* integrator = new CustomIntegrator(node.getDoubleProperty("stepSize")); const SerializationNode& globalVariablesNode = node.getChildNode("GlobalVariables"); for (auto& prop : globalVariablesNode.getProperties()) integrator->addGlobalVariable(prop.first, globalVariablesNode.getDoubleProperty(prop.first)); const SerializationNode& perDofVariablesNode = node.getChildNode("PerDofVariables"); int count = 0; for (auto& var : perDofVariablesNode.getChildren()) { integrator->addPerDofVariable(var.getName(), 0); vector perDofValues; for (auto& child : var.getChildren()) perDofValues.push_back(Vec3(child.getDoubleProperty("x"), child.getDoubleProperty("y"), child.getDoubleProperty("z"))); integrator->setPerDofVariable(count, perDofValues); count++; } const SerializationNode& computationsNode = node.getChildNode("Computations"); for (auto& comp : computationsNode.getChildren()) { CustomIntegrator::ComputationType computationType = static_cast(comp.getIntProperty("computationType")); // make sure that the int casts to a valid enum if (computationType == CustomIntegrator::ComputeGlobal) { integrator->addComputeGlobal(comp.getStringProperty("computationVariable"), comp.getStringProperty("computationExpression")); } else if (computationType == CustomIntegrator::ComputePerDof) { integrator->addComputePerDof(comp.getStringProperty("computationVariable"), comp.getStringProperty("computationExpression")); } else if (computationType == CustomIntegrator::ComputeSum) { integrator->addComputeSum(comp.getStringProperty("computationVariable"), comp.getStringProperty("computationExpression")); } else if (computationType == CustomIntegrator::ConstrainPositions) { integrator->addConstrainPositions(); } else if (computationType == CustomIntegrator::ConstrainVelocities) { integrator->addConstrainVelocities(); } else if (computationType == CustomIntegrator::UpdateContextState) { integrator->addUpdateContextState(); } else if (computationType == CustomIntegrator::IfBlockStart) { integrator->beginIfBlock(comp.getStringProperty("computationExpression")); } else if (computationType == CustomIntegrator::WhileBlockStart) { integrator->beginWhileBlock(comp.getStringProperty("computationExpression")); } else if (computationType == CustomIntegrator::BlockEnd) { integrator->endBlock(); } else { throw(OpenMMException("Custom Integrator Deserialization: Unknown computation type")); } } integrator->setKineticEnergyExpression(node.getStringProperty("kineticEnergyExpression")); integrator->setRandomNumberSeed(node.getIntProperty("randomSeed")); integrator->setConstraintTolerance(node.getDoubleProperty("constraintTolerance")); return integrator; }