Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ConstraintSetMover.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 Assigns a ConstraintSet to a pose. Reads and creats ConstraintSet from file via command line option -constraints::cst_file, unless a ConstraintSet is supplied via the constructor or the constraint_set() method.
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_simple_moves_ConstraintSetMover_hh
15 #define INCLUDED_protocols_simple_moves_ConstraintSetMover_hh
16 
18 #include <protocols/moves/Mover.hh>
19 
21 
23 
24 #include <utility/vector1.hh>
25 
26 
27 
28 namespace protocols {
29 namespace simple_moves {
30 
32 
33 public:
37 
38 public:
40  virtual ~ConstraintSetMover();
42 
43  void read_options();
44  void constraint_file( std::string const & );
45 
49 
50  virtual void apply( Pose & );
51  virtual std::string get_name() const;
52 
53  virtual protocols::moves::MoverOP clone() const;
55 
56  virtual void
58  virtual void parse_def( utility::lua::LuaObject const & def,
59  utility::lua::LuaObject const & score_fxns,
60  utility::lua::LuaObject const & tasks,
62 
63 private:
68 
69 };
70 
71 } // moves
72 } // protocols
73 
74 #endif