#ifndef OPENMM_CONTEXTIMPL_H_ #define OPENMM_CONTEXTIMPL_H_ /* -------------------------------------------------------------------------- * * 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. * * * * Portions copyright (c) 2008-2012 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/Kernel.h" #include "openmm/Platform.h" #include "openmm/Vec3.h" #include #include #include namespace OpenMM { class ForceImpl; class Integrator; class Context; class System; /** * This is the internal implementation of a Context. */ class OPENMM_EXPORT ContextImpl { public: /** * Create an ContextImpl for a Context; */ ContextImpl(Context& owner, System& system, Integrator& integrator, Platform* platform, const std::map& properties); ~ContextImpl(); /** * Get the Context for which this is the implementation. */ Context& getOwner() { return owner; } /** * Get System being simulated in this context. */ System& getSystem() { return system; } /** * Get Integrator being used to by this context. */ Integrator& getIntegrator() { return integrator; } /** * Get the Platform implementation being used for computations. */ Platform& getPlatform() { return *platform; } /** * Get the current time (in picoseconds). */ double getTime() const; /** * Set the current time (in picoseconds). */ void setTime(double t); /** * Get the positions of all particles. * * @param positions on exit, this contains the particle positions */ void getPositions(std::vector& positions); /** * Set the positions of all particles. * * @param positions a vector containg the particle positions */ void setPositions(const std::vector& positions); /** * Get the velocities of all particles. * * @param velocities on exit, this contains the particle velocities */ void getVelocities(std::vector& velocities); /** * Set the velocities of all particles. * * @param velocities a vector containg the particle velocities */ void setVelocities(const std::vector& velocities); /** * Get the current forces on all particles. * * @param forces on exit, this contains the forces */ void getForces(std::vector& forces); /** * Get the set of all adjustable parameters and their values */ const std::map& getParameters() const; /** * Get the value of an adjustable parameter. If there is no parameter with the specified name, this * throws an exception. * * @param name the name of the parameter to get */ double getParameter(std::string name); /** * Set the value of an adjustable parameter. If there is no parameter with the specified name, this * throws an exception. * * @param name the name of the parameter to set * @param value the value of the parameter */ void setParameter(std::string name, double value); /** * Get the vectors defining the axes of the periodic box (measured in nm). They will affect * any Force that uses periodic boundary conditions. * * Currently, only rectangular boxes are supported. This means that a, b, and c must be aligned with the * x, y, and z axes respectively. Future releases may support arbitrary triclinic boxes. * * @param a the vector defining the first edge of the periodic box * @param b the vector defining the second edge of the periodic box * @param c the vector defining the third edge of the periodic box */ void getPeriodicBoxVectors(Vec3& a, Vec3& b, Vec3& c); /** * Set the vectors defining the axes of the periodic box (measured in nm). They will affect * any Force that uses periodic boundary conditions. * * Currently, only rectangular boxes are supported. This means that a, b, and c must be aligned with the * x, y, and z axes respectively. Future releases may support arbitrary triclinic boxes. * * @param a the vector defining the first edge of the periodic box * @param b the vector defining the second edge of the periodic box * @param c the vector defining the third edge of the periodic box */ void setPeriodicBoxVectors(const Vec3& a, const Vec3& b, const Vec3& c); /** * Update the positions of particles so that all distance constraints are satisfied. This also recomputes * the locations of all virtual sites. * * @param tol the distance tolerance within which constraints must be satisfied. */ void applyConstraints(double tol); /** * Recompute the locations of all virtual sites. There is rarely a reason to call * this, since virtual sites are also updated by applyConstraints(). This is only * for the rare situations when you want to enforce virtual sites but not * constraints. */ void computeVirtualSites(); /** * Recalculate all of the forces in the system and/or the potential energy of the system (in kJ/mol). * After calling this, use getForces() to retrieve the forces that were calculated. * * @param includeForces true if forces should be calculated * @param includeEnergy true if the energy should be calculated * @param groups a set of bit flags for which force groups to include. Group i will be included * if (groups&(1<& getForceImpls() const; /** * Get the platform-specific data stored in this context. */ void* getPlatformData(); /** * Get the platform-specific data stored in this context. */ const void* getPlatformData() const; /** * Set the platform-specific data stored in this context. */ void setPlatformData(void* data); /** * Get a list of the particles in each molecules in the system. Two particles are in the * same molecule if they are connected by constraints or bonds. */ const std::vector >& getMolecules() const; /** * Create a checkpoint recording the current state of the Context. * * @param stream an output stream the checkpoint data should be written to */ void createCheckpoint(std::ostream& stream); /** * Load a checkpoint that was written by createCheckpoint(). * * @param stream an input stream the checkpoint data should be read from */ void loadCheckpoint(std::istream& stream); private: friend class Context; static void tagParticlesInMolecule(int particle, int molecule, std::vector& particleMolecule, std::vector >& particleBonds); Context& owner; System& system; Integrator& integrator; std::vector forceImpls; std::map parameters; mutable std::vector > molecules; bool hasInitializedForces; int lastForceGroups; Platform* platform; Kernel initializeForcesKernel, kineticEnergyKernel, updateStateDataKernel, applyConstraintsKernel, virtualSitesKernel; void* platformData; }; } // namespace OpenMM #endif /*OPENMM_CONTEXTIMPL_H_*/