CompoundIntegrator.cpp 5.76 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) 2015-2020 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
 * 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/CompoundIntegrator.h"
#include "openmm/Context.h"
#include "openmm/OpenMMException.h"
#include "openmm/internal/ContextImpl.h"
#include "openmm/internal/AssertionUtilities.h"
#include "openmm/kernels.h"
#include <string>

using namespace OpenMM;
using namespace std;

CompoundIntegrator::CompoundIntegrator() : currentIntegrator(0) {
}

CompoundIntegrator::~CompoundIntegrator() {
    for (int i = 0; i < integrators.size(); i++)
        delete integrators[i];
}

int CompoundIntegrator::getNumIntegrators() const {
    return integrators.size();
}

int CompoundIntegrator::addIntegrator(Integrator* integrator) {
    if (owner != NULL)
        throw OpenMMException("addIntegrator() cannot be called after a CustomIntegrator is already bound to a context");
    integrators.push_back(integrator);
    return integrators.size()-1;
}

Integrator& CompoundIntegrator::getIntegrator(int index) {
    ASSERT_VALID_INDEX(index, integrators);
    return *integrators[index];
}

67
68
69
70
71
const Integrator& CompoundIntegrator::getIntegrator(int index) const {
    ASSERT_VALID_INDEX(index, integrators);
    return *integrators[index];
}

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
int CompoundIntegrator::getCurrentIntegrator() const {
    return currentIntegrator;
}

void CompoundIntegrator::setCurrentIntegrator(int index) {
    if (index < 0 || index >= integrators.size())
        throw OpenMMException("Illegal index for setCurrentIntegrator()");
    currentIntegrator = index;
}

double CompoundIntegrator::getStepSize() const {
    return integrators[currentIntegrator]->getStepSize();
}

void CompoundIntegrator::setStepSize(double size) {
    integrators[currentIntegrator]->setStepSize(size);
}

double CompoundIntegrator::getConstraintTolerance() const {
    return integrators[currentIntegrator]->getConstraintTolerance();
}

void CompoundIntegrator::setConstraintTolerance(double tol) {
    integrators[currentIntegrator]->setConstraintTolerance(tol);
}

void CompoundIntegrator::step(int steps) {
    integrators[currentIntegrator]->step(steps);
}

void CompoundIntegrator::initialize(ContextImpl& context) {
103
104
    if (integrators.size() == 0)
        throw OpenMMException("CompoundIntegrator must contain at least one Integrator");
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
    for (int i = 0; i < integrators.size(); i++)
        integrators[i]->initialize(context);
}

void CompoundIntegrator::cleanup() {
    for (int i = 0; i < integrators.size(); i++)
        integrators[i]->cleanup();
}

vector<string> CompoundIntegrator::getKernelNames() {
    vector<string> kernels;
    for (int i = 0; i < integrators.size(); i++) {
        vector<string> integratorKernels = integrators[i]->getKernelNames();
        kernels.insert(kernels.end(), integratorKernels.begin(), integratorKernels.end());
    }
    return kernels;
}

123
124
125
126
127
void CompoundIntegrator::stateChanged(State::DataType changed) {
    for (int i = 0; i < integrators.size(); i++)
        integrators[i]->stateChanged(changed);
}

128
129
130
double CompoundIntegrator::computeKineticEnergy() {
    return integrators[currentIntegrator]->computeKineticEnergy();
}
131
132

void CompoundIntegrator::createCheckpoint(std::ostream& stream) const {
133
    stream.write((char*) &currentIntegrator, sizeof(int));
134
135
136
137
138
    for (int i = 0; i < integrators.size(); i++)
        integrators[i]->createCheckpoint(stream);
}

void CompoundIntegrator::loadCheckpoint(std::istream& stream) {
139
    stream.read((char*) &currentIntegrator, sizeof(int));
140
141
142
    for (int i = 0; i < integrators.size(); i++)
        integrators[i]->loadCheckpoint(stream);
}