Victor
 All Data Structures Functions Variables Friends Pages
SolvExpos.h
1 /* This file is part of Victor.
2 
3  Victor is free software: you can redistribute it and/or modify
4  it under the terms of the GNU General Public License as published by
5  the Free Software Foundation, either version 3 of the License, or
6  (at your option) any later version.
7 
8  Victor is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with Victor. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef __SolvExpos_H__
18 #define __SolvExpos_H__
19 
20 #include <Spacer.h>
21 
22 namespace Victor { namespace Biopool {
23 
24  class SolvExpos {
25  public:
26 
27  enum SolvExposEnum {
28  CORE, EXPOSED
29  };
30 
31  SolvExpos();
32  ~SolvExpos();
33 
34  SolvExposEnum getSolvExpos(Spacer &chain, const unsigned int tgt,
35  const unsigned int start, const unsigned int end);
36 
37  vector<SolvExposEnum>* getSolvExposVec(Spacer &chain,
38  const unsigned int tgtS, const unsigned int tgtE,
39  const unsigned int envS, const unsigned int envE);
40 
41  double getSolvAccess(Spacer &chain, unsigned int tgt,
42  unsigned int start, unsigned int end);
43 
44  vector<double> getSolvAccessVec(Spacer &chain,
45  unsigned int tgtS, unsigned int tgtE,
46  unsigned int envS, unsigned int envE);
47 
48 
49  Atom& getReprAtom(AminoAcid &amino);
50 
51  unsigned int getNumNeighbours(Spacer &chain, const unsigned int tgt,
52  const unsigned int start, const unsigned int end);
53 
54 
55 
56  private:
57 
58  };
59 }} //namespace
60 
61 #endif