Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SolvationGrid.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file src/protocols/ligand_docking/scoring_grid/SolvationGrid.hh
11 /// @author Sam DeLuca
12 
13 #ifndef INCLUDED_protocols_qsar_scoring_grid_SolvationGrid_hh
14 #define INCLUDED_protocols_qsar_scoring_grid_SolvationGrid_hh
15 
18 
19 #include <utility/vector1.hh>
20 
21 #include <list>
22 
23 namespace protocols {
24 namespace qsar {
25 namespace scoring_grid {
26 
27 class SolvationGrid : public SingleGrid
28 {
29 public:
30 
31  SolvationGrid();
32  virtual ~SolvationGrid();
33  virtual void refresh(core::pose::Pose const & pose, core::Vector const & center, core::Size const & );
34  virtual void refresh(core::pose::Pose const & pose, core::Vector const & center);
35  virtual void refresh(core::pose::Pose const & pose, core::Vector const & center, utility::vector1<core::Size> );
36 
37  void parse_my_tag(utility::tag::TagPtr const tag);
38 
39  /// @brief serialize the Interpolator to a json_spirit object
40  virtual utility::json_spirit::Value serialize();
41  /// @brief deserialize a json_spirit object to a Interpolator
42  virtual void deserialize(utility::json_spirit::mObject data);
43 
44  void set_probe_atom_type(core::ShortSize const & atom_type);
45 
46 private:
48 
49 
50 
51 };
52 
53 }
54 }
55 }
56 
57 #endif