Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ClassicGrid.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/qsar/scoring_grid/ClassicGrid.hh
11 /// @author Sam DeLuca
12 
13 #ifndef INCLUDED_protocols_qsar_scoring_grid_ClassicGrid_HH
14 #define INCLUDED_protocols_qsar_scoring_grid_ClassicGrid_HH
15 
18 
19 #include <utility/vector1.hh>
20 
21 namespace protocols {
22 namespace qsar {
23 namespace scoring_grid {
24 
25 class ClassicGrid : public SingleGrid
26 {
27 public:
28  ClassicGrid();
29  virtual void refresh(core::pose::Pose const & pose, core::Vector const & center, core::Size const & ligand_chain_id_to_exclude);
30  virtual void refresh(core::pose::Pose const & pose, core::Vector const & center);
31  virtual void refresh(core::pose::Pose const & pose, core::Vector const & center, utility::vector1<core::Size> ligand_chain_ids_to_exclude);
32 
33  /// @brief serialize the SingleGrid to a json_spirit object
34  virtual utility::json_spirit::Value serialize();
35  /// @brief deserialize a json_spirit object to a SingleGrid
36  virtual void deserialize(utility::json_spirit::mObject data);
37 
38  void parse_my_tag(utility::tag::TagPtr const tag);
39 
40 private:
43 };
44 
45 }
46 }
47 }
48 
49 
50 #endif /* CLASSICGRID_HH_ */