Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AddConstraintsToCurrentConformationMover.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
11 /// @brief Add constraints to the current pose conformation.
12 /// @author Yifan Song
13 
14 #ifndef INCLUDED_protocols_simple_moves_AddConstraintsToCurrentConformationMover_hh
15 #define INCLUDED_protocols_simple_moves_AddConstraintsToCurrentConformationMover_hh
16 
17 #include <protocols/moves/Mover.hh>
19 
20 
21 namespace protocols {
22 namespace simple_moves {
23 
25 
26 public:
28 
31 
32  virtual void apply( core::pose::Pose & );
33  virtual std::string get_name() const;
34 
35  void task_factory( TaskFactoryCOP tf );
36 
37  virtual moves::MoverOP clone() const;
38  virtual moves::MoverOP fresh_instance() const;
39 
40  virtual void
41  parse_my_tag( TagPtr const, moves::DataMap &, Filters_map const &, moves::Movers_map const &, Pose const & );
42 
43  ///@brief parse "task_operations" XML option (can be employed virtually by derived movers)
44  virtual void parse_task_operations(
45  TagPtr const,
46  moves::DataMap const &,
47  Filters_map const &,
48  moves::Movers_map const &,
49  Pose const & );
50 
51 private:
52  // pointers to data that are passed in
54 
61 
62 };
63 
64 } // moves
65 } // protocols
66 
67 #endif