/* Portions copyright (c) 2006 Stanford University and Simbios. * Contributors: Pande Group * * 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 __CpuObc_H__ #define __CpuObc_H__ #include "ObcParameters.h" #include "CpuImplicitSolvent.h" // --------------------------------------------------------------------------------------- class CpuObc : public CpuImplicitSolvent { private: // GBSA/OBC parameters ObcParameters* _obcParameters; // arrays containing OBC chain derivative std::vector _obcChain; std::vector _obcChainTemp; // initialize data members (more than // one constructor, so centralize intialization here) void _initializeObcDataMembers( void ); public: /**--------------------------------------------------------------------------------------- Constructor @param implicitSolventParameters ImplicitSolventParameters reference @return CpuImplicitSolvent object --------------------------------------------------------------------------------------- */ CpuObc( ImplicitSolventParameters* obcParameters ); /**--------------------------------------------------------------------------------------- Destructor --------------------------------------------------------------------------------------- */ ~CpuObc( ); /**--------------------------------------------------------------------------------------- Return ObcParameters @return ObcParameters --------------------------------------------------------------------------------------- */ ObcParameters* getObcParameters( void ) const; /**--------------------------------------------------------------------------------------- Set ImplicitSolventParameters @param ImplicitSolventParameters @return SimTKOpenMMCommon::DefaultReturn --------------------------------------------------------------------------------------- */ int setObcParameters( ObcParameters* obcParameters ); /**--------------------------------------------------------------------------------------- Return OBC chain derivative: size = _implicitSolventParameters->getNumberOfAtoms() On first call, memory for array is allocated if not set @return array --------------------------------------------------------------------------------------- */ std::vector& getObcChain( void ); const std::vector& getObcChainConst( void ) const; /**--------------------------------------------------------------------------------------- Return OBC chain temp work array of size=_implicitSolventParameters->getNumberOfAtoms() On first call, memory for array is allocated if not set @return array --------------------------------------------------------------------------------------- */ std::vector& getObcChainTemp( void ); /**--------------------------------------------------------------------------------------- Get Born radii based on OBC @param atomCoordinates atomic coordinates @param bornRadii output array of Born radii @param obcChain output array of OBC chain derivative factors; if NULL, then ignored @return array of Born radii --------------------------------------------------------------------------------------- */ int computeBornRadii( std::vector& atomCoordinates, std::vector& bornRadii ); /**--------------------------------------------------------------------------------------- Get Born energy and forces based on OBC @param bornRadii Born radii @param atomCoordinates atomic coordinates @param partialCharges partial charges @param forces forces @return force array --------------------------------------------------------------------------------------- */ int computeBornEnergyForces( std::vector& bornRadii, std::vector& atomCoordinates, const RealOpenMM* partialCharges, std::vector& forces ); /**--------------------------------------------------------------------------------------- Get state title title (optional) @return state string --------------------------------------------------------------------------------------- */ std::string getStateString( const char* title ) const; }; // --------------------------------------------------------------------------------------- #endif // __CpuObc_H__