Victor
 All Data Structures Functions Variables Friends Pages
AminoAcidHydrogen.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 
18 #ifndef _AMINOACIDHYDROGEN_H_
19 #define _AMINOACIDHYDROGEN_H_
20 
21 #include <AminoAcid.h>
22 #include <AminoAcidCode.h>
23 #include <string.h>
24 #include <map>
25 #include <list>
26 
27 
28 
29 namespace Victor { namespace Biopool {
30 
36  public:
37 
38  static void loadParam(string inputFile);
39  static void setHydrogen(AminoAcid* aa, bool verbose);
40 
41  private:
42 
43  static map<AminoAcidCode, vector<vector<string> > > paramH;
44 
45  };
46 
47 
48 }} //namespace
49 
50 
51 #endif /* _AMINOACIDHYDROGEN_H_ */
52 
static void setHydrogen(AminoAcid *aa, bool verbose)
Definition: AminoAcidHydrogen.cc:95
Implements aminoacid hydrogens.
Definition: AminoAcidHydrogen.h:35
It mplements a simple amino acid.
Definition: AminoAcid.h:43
static void loadParam(string inputFile)
Definition: AminoAcidHydrogen.cc:38