#ifndef OPENMM_BROOK_SHAKE_H_ #define OPENMM_BROOK_SHAKE_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 Stanford University and the Authors. * * Authors: Peter Eastman, Mark Friedrichs * * 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 #include #include "BrookFloatStreamInternal.h" #include "BrookPlatform.h" #include "BrookCommon.h" namespace OpenMM { /** * * Encapsulates stochastic dynamics algorithm * */ class BrookShakeAlgorithm : public BrookCommon { public: /** * Constructor * */ BrookShakeAlgorithm( ); /** * Destructor * */ ~BrookShakeAlgorithm(); /** * Get number of constraints * * @return number of constraints * */ int getNumberOfConstraints( void ) const; /** * Get inverse of hydrogen mass * * @return inverse of hydrogen mass */ BrookOpenMMFloat getInverseHydrogenMass( void ) const; /** * Get Shake atom stream width * * @return atom stream width */ int getShakeAtomStreamWidth( void ) const; /** * Get Shake atom stream height * * @return atom stream height */ int getShakeAtomStreamHeight( void ) const; /** * Get Shake atom stream size * * @return atom stream size */ int getShakeAtomStreamSize( void ) const; /** * Get Shake constraint stream width * * @return constraint stream width */ int getShakeConstraintStreamWidth( void ) const; /** * Get Shake constraint stream height * * @return constraint stream height */ int getShakeConstraintStreamHeight( void ) const; /** * Get Shake constraint stream size * * @return constraint stream size */ int getShakeConstraintStreamSize( void ) const; /** * Get array of Shake streams * * @return array ofstreams * */ BrookFloatStreamInternal** getStreams( void ); /* * Setup of Shake parameters * * @param masses masses * @param constraintIndices constraint atom indices * @param constraintLengths constraint lengths * @param platform Brook platform * * @return ErrorReturnValue if error * */ int setup( const std::vector& masses, const std::vector< std::vector >& constraintIndices, const std::vector& constraintLengths, const Platform& platform ); /* * Get contents of object * * @param level of dump * * @return string containing contents * * */ std::string getContentsString( int level = 0 ) const; /** * Get Shake atom indices stream * * @return Shake atom indices stream * */ BrookFloatStreamInternal* getShakeAtomIndicesStream( void ) const; /** * Get Shake atom parameter stream * * @return Shake atom parameter stream * */ BrookFloatStreamInternal* getShakeAtomParameterStream( void ) const; /** * Get XCons0 stream * * @return XCons0 stream * */ BrookFloatStreamInternal* getShakeXCons0Stream( void ) const; /** * Get XCons1 stream * * @return XCons1 stream * */ BrookFloatStreamInternal* getShakeXCons1Stream( void ) const; /** * Get XCons2 stream * * @return XCons2 stream * */ BrookFloatStreamInternal* getShakeXCons2Stream( void ) const; /** * Get XCons3 stream * * @return XCons3 stream * */ BrookFloatStreamInternal* getShakeXCons3Stream( void ) const; /** * Get Shake inverse map stream * * @return Shake inverse map stream * */ BrookFloatStreamInternal* getShakeInverseMapStream( void ) const; private: // streams indices enum BrookShakeAlgorithmStreams { ShakeAtomIndicesStream, ShakeAtomParameterStream, ShakeXCons0Stream, ShakeXCons1Stream, ShakeXCons2Stream, ShakeXCons3Stream, ShakeInverseMapStream, LastStreamIndex }; // number of constraints int _numberOfConstraints; // inverse of H mass BrookOpenMMFloat _inverseHydrogenMass; // atom stream dimensions int _shakeAtomStreamWidth; int _shakeAtomStreamHeight; int _shakeAtomStreamSize; // constraint stream dimensions int _shakeConstraintStreamSize; int _shakeConstraintStreamWidth; int _shakeConstraintStreamHeight; // inverse sqrt masses BrookOpenMMFloat* _inverseSqrtMasses; // internal streams BrookFloatStreamInternal* _shakeStreams[LastStreamIndex]; /* * Setup of stream dimensions * * @param atomStreamSize atom stream size * @param atomStreamWidth atom stream width * * @return ErrorReturnValue if error, else DefaultReturnValueValue * * */ int _initializeStreamSizes( int atomStreamSize, int atomStreamWidth ); /** * Initialize stream dimensions * * @param numberOfAtoms number of atoms * @param numberOfConstraints number of constraints * @param platform platform * * @return ErrorReturnValue if error, else DefaultReturnValueValue * */ int _initializeStreamSizes( int numberOfAtoms, int numberOfConstraints, const Platform& platform ); /** * Initialize stream dimensions and streams * * @param platform platform * * @return nonzero value if error * */ int _initializeStreams( const Platform& platform ); /* * Set Shake streams * * @param masses masses * @param constraintIndices constraint atom indices * @param constraintLengths constraint lengths * * @return ErrorReturnValue if error * * @throw OpenMMException if constraintIndices.size() != constraintLengths.size() * */ int _setShakeStreams( const std::vector& masses, const std::vector< std::vector >& constraintIndices, const std::vector& constraintLengths ); }; } // namespace OpenMM #endif /* OPENMM_BROOK_SHAKE_H_ */