CustomCentroidBondForceProxy.cpp 9.19 KB
Newer Older
1
2
3
4
5
6
7
8
/* -------------------------------------------------------------------------- *
 *                                   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.               *
 *                                                                            *
9
 * Portions copyright (c) 2010-2016 Stanford University and the Authors.      *
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 * 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 <sstream>

using namespace OpenMM;
using namespace std;

CustomCentroidBondForceProxy::CustomCentroidBondForceProxy() : SerializationProxy("CustomCentroidBondForce") {
}

void CustomCentroidBondForceProxy::serialize(const void* object, SerializationNode& node) const {
45
    node.setIntProperty("version", 3);
46
47
    const CustomCentroidBondForce& force = *reinterpret_cast<const CustomCentroidBondForce*>(object);
    node.setIntProperty("forceGroup", force.getForceGroup());
48
    node.setBoolProperty("usesPeriodic", force.usesPeriodicBoundaryConditions());
49
50
51
52
53
54
55
56
57
58
    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));
    }
59
60
61
62
    SerializationNode& energyDerivs = node.createChildNode("EnergyParameterDerivatives");
    for (int i = 0; i < force.getNumEnergyParameterDerivatives(); i++) {
        energyDerivs.createChildNode("Parameter").setStringProperty("name", force.getEnergyParameterDerivativeName(i));
    }
63
64
65
66
67
68
69
70
71
    SerializationNode& groups = node.createChildNode("Groups");
    for (int i = 0; i < force.getNumGroups(); i++) {
        vector<int> particles;
        vector<double> 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]);
72
73
            if (j < weights.size())
                node.setDoubleProperty("weight", weights[j]);
74
75
76
77
78
79
80
        }
    }
    SerializationNode& bonds = node.createChildNode("Bonds");
    for (int i = 0; i < force.getNumBonds(); i++) {
        vector<int> groups;
        vector<double> params;
        force.getBondParameters(i, groups, params);
Peter Eastman's avatar
Peter Eastman committed
81
        SerializationNode& bond = bonds.createChildNode("Bond");
82
83
84
85
        for (int j = 0; j < (int) groups.size(); j++) {
            stringstream key;
            key << "g";
            key << j+1;
Peter Eastman's avatar
Peter Eastman committed
86
            bond.setIntProperty(key.str(), groups[j]);
87
88
89
90
91
        }
        for (int j = 0; j < (int) params.size(); j++) {
            stringstream key;
            key << "param";
            key << j+1;
Peter Eastman's avatar
Peter Eastman committed
92
            bond.setDoubleProperty(key.str(), params[j]);
93
94
95
96
97
98
99
100
        }
    }
    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 {
101
    int version = node.getIntProperty("version");
102
    if (version < 1 || version > 3)
103
104
105
106
107
        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));
108
109
        if (version > 1)
            force->setUsesPeriodicBoundaryConditions(node.getBoolProperty("usesPeriodic"));
110
        const SerializationNode& perBondParams = node.getChildNode("PerBondParameters");
peastman's avatar
peastman committed
111
        for (auto& parameter : perBondParams.getChildren())
112
113
            force->addPerBondParameter(parameter.getStringProperty("name"));
        const SerializationNode& globalParams = node.getChildNode("GlobalParameters");
peastman's avatar
peastman committed
114
        for (auto& parameter : globalParams.getChildren())
115
            force->addGlobalParameter(parameter.getStringProperty("name"), parameter.getDoubleProperty("default"));
116
117
        if (version > 2) {
            const SerializationNode& energyDerivs = node.getChildNode("EnergyParameterDerivatives");
peastman's avatar
peastman committed
118
            for (auto& parameter : energyDerivs.getChildren())
119
120
                force->addEnergyParameterDerivative(parameter.getStringProperty("name"));
        }
121
        const SerializationNode& groups = node.getChildNode("Groups");
peastman's avatar
peastman committed
122
        for (auto& group : groups.getChildren()) {
123
124
            vector<int> particles;
            vector<double> weights;
peastman's avatar
peastman committed
125
126
127
128
            for (auto& child : group.getChildren()) {
                particles.push_back(child.getIntProperty("p"));
                if (child.hasProperty("weight"))
                    weights.push_back(child.getDoubleProperty("weight"));
129
130
131
132
133
134
            }
            force->addGroup(particles, weights);
        }
        const SerializationNode& bonds = node.getChildNode("Bonds");
        vector<int> bondGroups(force->getNumGroupsPerBond());
        vector<double> params(force->getNumPerBondParameters());
peastman's avatar
peastman committed
135
        for (auto& bond : bonds.getChildren()) {
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
            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");
peastman's avatar
peastman committed
151
        for (auto& function : functions.getChildren()) {
152
153
154
155
156
157
158
159
            if (function.hasProperty("type")) {
                force->addTabulatedFunction(function.getStringProperty("name"), function.decodeObject<TabulatedFunction>());
            }
            else {
                // This is an old file created before TabulatedFunction existed.

                const SerializationNode& valuesNode = function.getChildNode("Values");
                vector<double> values;
peastman's avatar
peastman committed
160
161
                for (auto& child : valuesNode.getChildren())
                    values.push_back(child.getDoubleProperty("v"));
162
163
164
165
166
167
168
169
170
171
172
                force->addTabulatedFunction(function.getStringProperty("name"), new Continuous1DFunction(values, function.getDoubleProperty("min"), function.getDoubleProperty("max")));
            }
        }
        return force;
    }
    catch (...) {
        if (force != NULL)
            delete force;
        throw;
    }
}