/* -------------------------------------------------------------------------- * * 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-2015 Stanford University and the Authors. * * Authors: Peter Eastman * * 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/CustomCentroidBondForceProxy.h" #include "openmm/serialization/SerializationNode.h" #include "openmm/Force.h" #include "openmm/CustomCentroidBondForce.h" #include using namespace OpenMM; using namespace std; CustomCentroidBondForceProxy::CustomCentroidBondForceProxy() : SerializationProxy("CustomCentroidBondForce") { } void CustomCentroidBondForceProxy::serialize(const void* object, SerializationNode& node) const { node.setIntProperty("version", 1); const CustomCentroidBondForce& force = *reinterpret_cast(object); node.setIntProperty("forceGroup", force.getForceGroup()); node.setIntProperty("groups", force.getNumGroupsPerBond()); node.setStringProperty("energy", force.getEnergyFunction()); SerializationNode& perBondParams = node.createChildNode("PerBondParameters"); for (int i = 0; i < force.getNumPerBondParameters(); i++) { perBondParams.createChildNode("Parameter").setStringProperty("name", force.getPerBondParameterName(i)); } SerializationNode& globalParams = node.createChildNode("GlobalParameters"); for (int i = 0; i < force.getNumGlobalParameters(); i++) { globalParams.createChildNode("Parameter").setStringProperty("name", force.getGlobalParameterName(i)).setDoubleProperty("default", force.getGlobalParameterDefaultValue(i)); } SerializationNode& groups = node.createChildNode("Groups"); for (int i = 0; i < force.getNumGroups(); i++) { vector particles; vector weights; force.getGroupParameters(i, particles, weights); SerializationNode& group = groups.createChildNode("Group"); for (int j = 0; j < (int) particles.size(); j++) { SerializationNode& node = group.createChildNode("Particle"); node.setIntProperty("p", particles[j]); node.setDoubleProperty("weight", weights[j]); } } SerializationNode& bonds = node.createChildNode("Bonds"); for (int i = 0; i < force.getNumBonds(); i++) { vector groups; vector params; force.getBondParameters(i, groups, params); SerializationNode& node = bonds.createChildNode("Bond"); for (int j = 0; j < (int) groups.size(); j++) { stringstream key; key << "g"; key << j+1; node.setIntProperty(key.str(), groups[j]); } for (int j = 0; j < (int) params.size(); j++) { stringstream key; key << "param"; key << j+1; node.setDoubleProperty(key.str(), params[j]); } } SerializationNode& functions = node.createChildNode("Functions"); for (int i = 0; i < force.getNumTabulatedFunctions(); i++) functions.createChildNode("Function", &force.getTabulatedFunction(i)).setStringProperty("name", force.getTabulatedFunctionName(i)); } void* CustomCentroidBondForceProxy::deserialize(const SerializationNode& node) const { if (node.getIntProperty("version") != 1) throw OpenMMException("Unsupported version number"); CustomCentroidBondForce* force = NULL; try { CustomCentroidBondForce* force = new CustomCentroidBondForce(node.getIntProperty("groups"), node.getStringProperty("energy")); force->setForceGroup(node.getIntProperty("forceGroup", 0)); const SerializationNode& perBondParams = node.getChildNode("PerBondParameters"); for (int i = 0; i < (int) perBondParams.getChildren().size(); i++) { const SerializationNode& parameter = perBondParams.getChildren()[i]; force->addPerBondParameter(parameter.getStringProperty("name")); } const SerializationNode& globalParams = node.getChildNode("GlobalParameters"); for (int i = 0; i < (int) globalParams.getChildren().size(); i++) { const SerializationNode& parameter = globalParams.getChildren()[i]; force->addGlobalParameter(parameter.getStringProperty("name"), parameter.getDoubleProperty("default")); } const SerializationNode& groups = node.getChildNode("Groups"); for (int i = 0; i < (int) groups.getChildren().size(); i++) { const SerializationNode& group = groups.getChildren()[i]; vector particles; vector weights; for (int j = 0; j < (int) group.getChildren().size(); j++) { particles.push_back(group.getChildren()[j].getIntProperty("p")); weights.push_back(group.getChildren()[j].getDoubleProperty("weight")); } force->addGroup(particles, weights); } const SerializationNode& bonds = node.getChildNode("Bonds"); vector bondGroups(force->getNumGroupsPerBond()); vector params(force->getNumPerBondParameters()); for (int i = 0; i < (int) bonds.getChildren().size(); i++) { const SerializationNode& bond = bonds.getChildren()[i]; for (int j = 0; j < (int) bondGroups.size(); j++) { stringstream key; key << "g"; key << j+1; bondGroups[j] = bond.getIntProperty(key.str()); } for (int j = 0; j < (int) params.size(); j++) { stringstream key; key << "param"; key << j+1; params[j] = bond.getDoubleProperty(key.str()); } force->addBond(bondGroups, params); } const SerializationNode& functions = node.getChildNode("Functions"); for (int i = 0; i < (int) functions.getChildren().size(); i++) { const SerializationNode& function = functions.getChildren()[i]; if (function.hasProperty("type")) { force->addTabulatedFunction(function.getStringProperty("name"), function.decodeObject()); } else { // This is an old file created before TabulatedFunction existed. const SerializationNode& valuesNode = function.getChildNode("Values"); vector values; for (int j = 0; j < (int) valuesNode.getChildren().size(); j++) values.push_back(valuesNode.getChildren()[j].getDoubleProperty("v")); force->addTabulatedFunction(function.getStringProperty("name"), new Continuous1DFunction(values, function.getDoubleProperty("min"), function.getDoubleProperty("max"))); } } return force; } catch (...) { if (force != NULL) delete force; throw; } }