mirror of
https://github.com/openmm/openmm
synced 2026-06-03 06:39:48 +09:00
* Basic LCPO support * Add basic test for LCPO from a prmtop file * API for LCPOForce * Started LCPO reference implementation * Finished reference forces & test cases * Use other test for finite difference since grid might have discontinuous forces * Reference platform formatting * Initial implementation of CPU platform * Bugfixes * More vectorization and improve neighbor list query speed * Parallelize part of neighbor search * Check box size for LCPO with periodic boundary conditions * Fixes for updating parameters in context * GBSAOBCForce doesn't use first & last indices for updates, so no need for this optimization here * Changes to neighbor checking and optimization * Fixes and minor changes * Add global surface tension parameter * Only process half of the pairs in the neighbor list * Remove unnecessary checks * Initial version of common platform implementation * Asynchronously download neighbor list size * Debugging * Do pair precomputation in copyPairsToNeighborList * Recompute interactions instead of scanning neighbor list in inner loop * Condense position array before computations * Also make neighbor count download asynchronous on device * Fixes for kernel launching * Topology-based LCPO parameter assignment * Fixes, and use test system for LCPO with nucleic acids * Always raise instead of warn when LCPO parameters can't be assigned * Use Amber convention for phosphates
93 lines
4.3 KiB
C
93 lines
4.3 KiB
C
#ifndef OPENMM_H_
|
|
#define OPENMM_H_
|
|
|
|
/* -------------------------------------------------------------------------- *
|
|
* OpenMM *
|
|
* -------------------------------------------------------------------------- *
|
|
* This is part of the OpenMM molecular simulation toolkit. *
|
|
* See https://openmm.org/development. *
|
|
* *
|
|
* Portions copyright (c) 2009-2025 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/AndersenThermostat.h"
|
|
#include "openmm/BrownianIntegrator.h"
|
|
#include "openmm/CMAPTorsionForce.h"
|
|
#include "openmm/CMMotionRemover.h"
|
|
#include "openmm/CompoundIntegrator.h"
|
|
#include "openmm/ConstantPotentialForce.h"
|
|
#include "openmm/CustomBondForce.h"
|
|
#include "openmm/CustomCentroidBondForce.h"
|
|
#include "openmm/CustomCompoundBondForce.h"
|
|
#include "openmm/CustomAngleForce.h"
|
|
#include "openmm/CustomTorsionForce.h"
|
|
#include "openmm/CustomExternalForce.h"
|
|
#include "openmm/CustomCVForce.h"
|
|
#include "openmm/CustomGBForce.h"
|
|
#include "openmm/CustomHbondForce.h"
|
|
#include "openmm/CustomIntegrator.h"
|
|
#include "openmm/CustomManyParticleForce.h"
|
|
#include "openmm/CustomNonbondedForce.h"
|
|
#include "openmm/CustomVolumeForce.h"
|
|
#include "openmm/DPDIntegrator.h"
|
|
#include "openmm/Force.h"
|
|
#include "openmm/GayBerneForce.h"
|
|
#include "openmm/GBSAOBCForce.h"
|
|
#include "openmm/HarmonicAngleForce.h"
|
|
#include "openmm/HarmonicBondForce.h"
|
|
#include "openmm/Integrator.h"
|
|
#include "openmm/LangevinIntegrator.h"
|
|
#include "openmm/LangevinMiddleIntegrator.h"
|
|
#include "openmm/LCPOForce.h"
|
|
#include "openmm/LocalEnergyMinimizer.h"
|
|
#include "openmm/MonteCarloAnisotropicBarostat.h"
|
|
#include "openmm/MonteCarloBarostat.h"
|
|
#include "openmm/MonteCarloFlexibleBarostat.h"
|
|
#include "openmm/MonteCarloMembraneBarostat.h"
|
|
#include "openmm/NonbondedForce.h"
|
|
#include "openmm/Context.h"
|
|
#include "openmm/OpenMMException.h"
|
|
#include "openmm/OrientationRestraintForce.h"
|
|
#include "openmm/PeriodicTorsionForce.h"
|
|
#include "openmm/PythonForce.h"
|
|
#include "openmm/QTBIntegrator.h"
|
|
#include "openmm/RBTorsionForce.h"
|
|
#include "openmm/RGForce.h"
|
|
#include "openmm/RMSDForce.h"
|
|
#include "openmm/State.h"
|
|
#include "openmm/System.h"
|
|
#include "openmm/TabulatedFunction.h"
|
|
#include "openmm/Units.h"
|
|
#include "openmm/VariableLangevinIntegrator.h"
|
|
#include "openmm/VariableVerletIntegrator.h"
|
|
#include "openmm/Vec3.h"
|
|
#include "openmm/VerletIntegrator.h"
|
|
#include "openmm/NoseHooverIntegrator.h"
|
|
#include "openmm/NoseHooverChain.h"
|
|
#include "openmm/VirtualSite.h"
|
|
#include "openmm/Platform.h"
|
|
#include "openmm/serialization/XmlSerializer.h"
|
|
#include "openmm/ATMForce.h"
|
|
|
|
#endif /*OPENMM_H_*/
|