Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RepulsiveOnlyMover.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/simple_moves/RepulsiveOnlyMover.hh
11 /// @brief
12 /// @author
13 
14 #ifndef INCLUDED_protocols_simple_moves_RepulsiveOnlyMover_HH
15 #define INCLUDED_protocols_simple_moves_RepulsiveOnlyMover_HH
16 
17 // Unit Headers
18 #include <protocols/moves/Mover.hh>
20 
21 // Project headers
22 // AUTO-REMOVED #include <core/types.hh>
23 
24 #include <core/pose/Pose.fwd.hh>
25 
26 // AUTO-REMOVED #include <core/scoring/ScoreType.hh>
27 // AUTO-REMOVED #include <core/scoring/ScoreFunction.fwd.hh>
28 
29 // ObjexxFCL Headers
30 
31 // C++ Headers
32 #include <string>
33 
34 // Utility Headers
35 #include <utility/pointer/ReferenceCount.hh>
36 // AUTO-REMOVED #include <ObjexxFCL/string.functions.hh>
37 
38 #include <utility/vector1.hh>
39 
40 
41 namespace protocols {
42 namespace simple_moves {
43 
44 /// @brief this mover replace designated residues with glycines, and then assigns a "REPLONLY" residue type to those glycines. Those "REPLONLY" residues will make only repulsive contributions to the overall energy.
46 public:
47  // default constructor (nmoves=1)
49  ~RepulsiveOnlyMover();//deconstructor
50 
51  virtual void apply( core::pose::Pose & pose );
52  virtual std::string get_name() const;
53  void set_mutate_to_glycine( bool setting ) {
54  mutate_to_glycine_ = setting;
55  }
56 
57 private:
59 };
60 
61 } // moves
62 } // protocols
63 
64 
65 #endif