/* Portions copyright (c) 2009-2018 Stanford University and Simbios. * Contributors: Peter Eastman * * 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. */ #ifndef __ReferenceCustomNonbondedxIxn_H__ #define __ReferenceCustomNonbondedxIxn_H__ #include "ReferencePairIxn.h" #include "ReferenceNeighborList.h" #include "openmm/internal/CompiledExpressionSet.h" #include #include #include #include namespace OpenMM { class ReferenceCustomNonbondedIxn { private: bool cutoff; bool useSwitch; bool periodic; const OpenMM::NeighborList* neighborList; OpenMM::Vec3 periodicBoxVectors[3]; double cutoffDistance, switchingDistance; Lepton::CompiledExpression energyExpression; Lepton::CompiledExpression forceExpression; std::vector paramNames; std::vector energyParamDerivExpressions; CompiledExpressionSet expressionSet; std::vector particleParamIndex; int rIndex; std::vector, std::set > > interactionGroups; /**--------------------------------------------------------------------------------------- Calculate custom pair ixn between two atoms @param atom1 the index of the first atom @param atom2 the index of the second atom @param atomCoordinates atom coordinates @param forces force array (forces added) @param totalEnergy total energy --------------------------------------------------------------------------------------- */ void calculateOneIxn(int atom1, int atom2, std::vector& atomCoordinates, std::vector& forces, double* totalEnergy, double* energyParamDerivs); public: /**--------------------------------------------------------------------------------------- Constructor --------------------------------------------------------------------------------------- */ ReferenceCustomNonbondedIxn(const Lepton::CompiledExpression& energyExpression, const Lepton::CompiledExpression& forceExpression, const std::vector& parameterNames, const std::vector energyParamDerivExpressions); /**--------------------------------------------------------------------------------------- Destructor --------------------------------------------------------------------------------------- */ ~ReferenceCustomNonbondedIxn(); /**--------------------------------------------------------------------------------------- Set the force to use a cutoff. @param distance the cutoff distance @param neighbors the neighbor list to use --------------------------------------------------------------------------------------- */ void setUseCutoff(double distance, const OpenMM::NeighborList& neighbors); /**--------------------------------------------------------------------------------------- Restrict the force to a list of interaction groups. @param distance the cutoff distance @param neighbors the neighbor list to use --------------------------------------------------------------------------------------- */ void setInteractionGroups(const std::vector, std::set > >& groups); /**--------------------------------------------------------------------------------------- Set the force to use a switching function. @param distance the switching distance --------------------------------------------------------------------------------------- */ void setUseSwitchingFunction(double distance); /**--------------------------------------------------------------------------------------- Set the force to use periodic boundary conditions. This requires that a cutoff has already been set, and the smallest side of the periodic box is at least twice the cutoff distance. @param vectors the vectors defining the periodic box --------------------------------------------------------------------------------------- */ void setPeriodic(OpenMM::Vec3* vectors); /**--------------------------------------------------------------------------------------- Calculate custom pair ixn @param numberOfAtoms number of atoms @param atomCoordinates atom coordinates @param atomParameters atom parameters (charges, c6, c12, ...) atomParameters[atomIndex][paramterIndex] @param exclusions atom exclusion indices exclusions[atomIndex] contains the list of exclusions for that atom @param globalParameters the values of global parameters @param forces force array (forces added) @param totalEnergy total energy --------------------------------------------------------------------------------------- */ void calculatePairIxn(int numberOfAtoms, std::vector& atomCoordinates, std::vector >& atomParameters, std::vector >& exclusions, const std::map& globalParameters, std::vector& forces, double* totalEnergy, double* energyParamDerivs); // --------------------------------------------------------------------------------------- }; } // namespace OpenMM #endif // __ReferenceCustomNonbondedxIxn_H__