"platforms/reference/include/SimTKOpenMMCommon.h" did not exist on "51475608956e75c461a6484a8f767ac25020f023"
PeriodicTorsionForce.cpp 4.52 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) 2008-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
 * 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.                                     *
 * -------------------------------------------------------------------------- */

32
33
34
#include "openmm/Force.h"
#include "openmm/OpenMMException.h"
#include "openmm/PeriodicTorsionForce.h"
35
#include "openmm/internal/AssertionUtilities.h"
36
#include "openmm/internal/PeriodicTorsionForceImpl.h"
37

38
using namespace OpenMM;
39

40
PeriodicTorsionForce::PeriodicTorsionForce() : usePeriodic(false) {
41
42
}

43
int PeriodicTorsionForce::addTorsion(int particle1, int particle2, int particle3, int particle4, int periodicity, double phase, double k) {
44
    periodicTorsions.push_back(PeriodicTorsionInfo(particle1, particle2, particle3, particle4, periodicity, phase, k));
45
    return periodicTorsions.size()-1;
46
}
47

Peter Eastman's avatar
Peter Eastman committed
48
void PeriodicTorsionForce::getTorsionParameters(int index, int& particle1, int& particle2, int& particle3, int& particle4, int& periodicity, double& phase, double& k) const {
49
    ASSERT_VALID_INDEX(index, periodicTorsions);
Peter Eastman's avatar
Peter Eastman committed
50
51
52
53
    particle1 = periodicTorsions[index].particle1;
    particle2 = periodicTorsions[index].particle2;
    particle3 = periodicTorsions[index].particle3;
    particle4 = periodicTorsions[index].particle4;
54
55
56
57
    periodicity = periodicTorsions[index].periodicity;
    phase = periodicTorsions[index].phase;
    k = periodicTorsions[index].k;
}
58

Peter Eastman's avatar
Peter Eastman committed
59
void PeriodicTorsionForce::setTorsionParameters(int index, int particle1, int particle2, int particle3, int particle4, int periodicity, double phase, double k) {
60
    ASSERT_VALID_INDEX(index, periodicTorsions);
Peter Eastman's avatar
Peter Eastman committed
61
62
63
64
    periodicTorsions[index].particle1 = particle1;
    periodicTorsions[index].particle2 = particle2;
    periodicTorsions[index].particle3 = particle3;
    periodicTorsions[index].particle4 = particle4;
65
66
67
68
    periodicTorsions[index].periodicity = periodicity;
    periodicTorsions[index].phase = phase;
    periodicTorsions[index].k = k;
}
69

70
ForceImpl* PeriodicTorsionForce::createImpl() const {
71
72
    return new PeriodicTorsionForceImpl(*this);
}
73
74
75
76

void PeriodicTorsionForce::updateParametersInContext(Context& context) {
    dynamic_cast<PeriodicTorsionForceImpl&>(getImplInContext(context)).updateParametersInContext(getContextImpl(context));
}
77
78
79
80
81
82
83
84

void PeriodicTorsionForce::setUsesPeriodicBoundaryConditions(bool periodic) {
    usePeriodic = periodic;
}

bool PeriodicTorsionForce::usesPeriodicBoundaryConditions() const {
    return usePeriodic;
}