RxDock 0.1.0
A fast, versatile, and open-source program for docking ligands to proteins and nucleic acids
Loading...
Searching...
No Matches
PMFDirSource.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#ifndef _RBTPMFDIRSOURCE_H_
14#define _RBTPMFDIRSOURCE_H_
15
16#include "rxdock/DirectorySource.h"
17#include "rxdock/PMF.h"
18
19namespace rxdock {
20
22public:
23 PMFDirSource(const std::string &);
24 virtual ~PMFDirSource() {}
25
26 virtual void ReadFiles(std::vector<std::vector<PMFValue>> *aVect,
27 std::vector<std::string> *aNameVect,
28 std::vector<PMFValue> *aSlopeVect);
29 virtual void ParseLines(std::vector<std::string> anStrVect,
30 std::vector<PMFValue> *aValueVect);
31};
32
33} // namespace rxdock
34
35#endif // _RBTPMFDIRSOURCE_H_
Definition DirectorySource.h:35
Definition PMFDirSource.h:21