RxDock 0.1.0
A fast, versatile, and open-source program for docking ligands to proteins and nucleic acids
Loading...
Searching...
No Matches
SolventFlexData.h
1/***********************************************************************
2 * The rDock program was developed from 1998 - 2006 by the software team
3 * at RiboTargets (subsequently Vernalis (R&D) Ltd).
4 * In 2006, the software was licensed to the University of York for
5 * maintenance and distribution.
6 * In 2012, Vernalis and the University of York agreed to release the
7 * program as Open Source software.
8 * This version is licensed under GNU-LGPL version 3.0 with support from
9 * the University of Barcelona.
10 * http://rdock.sourceforge.net/
11 ***********************************************************************/
12
13// Manages flexibility data for solvent
14#ifndef _RBTSOLVENTFLEXDATA_
15#define _RBTSOLVENTFLEXDATA_
16
17#include "rxdock/LigandFlexData.h"
18
19namespace rxdock {
20
22public:
23 // Probability of solvent being visible
24 static const std::string &_OCCUPANCY;
25 // Nominal step size for mutating the occupancy variable
26 static const std::string &_OCCUPANCY_STEP;
27 SolventFlexData(DockingSite *pDockSite);
28 virtual void Accept(FlexDataVisitor &v) { v.VisitSolventFlexData(this); }
29
30private:
32};
33
34} // namespace rxdock
35
36#endif //_RBTSOLVENTFLEXDATA_
Definition DockingSite.h:30
Definition FlexDataVisitor.h:23
Definition LigandFlexData.h:21
Definition SolventFlexData.h:21