Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GridInitMover.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/GridInitMover.hh
11 /// @author Sam DeLuca
12 
13 #ifndef INCLUDED_protocols_qsar_scoring_grid_GridInitMover_HH_
14 #define INCLUDED_protocols_qsar_scoring_grid_GridInitMover_HH_
15 
16 
17 #include <protocols/moves/Mover.hh>
19 
22 
23 namespace protocols {
24 namespace qsar {
25 namespace scoring_grid {
26 
28 {
29 public:
30  GridInitMover();
31 
32  virtual ~GridInitMover();
33  virtual protocols::moves::MoverOP clone() const;
35  virtual std::string get_name() const;
36 
37  virtual void parse_my_tag(
38  utility::tag::TagPtr const tag,
39  protocols::moves::DataMap & data_map,
42  core::pose::Pose const &
43  );
44 
45  virtual void apply(core::pose::Pose & pose);
46 
47 private:
49 
50 };
51 
52 }
53 }
54 }
55 
56 
57 
58 #endif /* GRIDINITMOVER_HH_ */