Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MinimizeLigand.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 core/pack/task/ResfileReader.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_MinimizeLigand_hh
15 #define INCLUDED_protocols_ligand_docking_MinimizeLigand_hh
16 
17 // Unit Headers
18 
19 // Package Headers
22 #include <utility/vector1.hh>
23 //
24 //// Project Headers
25 #include <protocols/moves/Mover.hh>
26 
27 //// Utility Headers
28 //
29 //// STL Headers
30 
31 ///////////////////////////////////////////////////////////////////////
32 
33 namespace protocols {
34 namespace ligand_docking {
35 
36 ///@brief
38 {
39 public:
41  MinimizeLigand(char chain, core::Real degrees);
42  virtual ~MinimizeLigand();
43  MinimizeLigand(MinimizeLigand const & that);
44 
45  virtual void apply( core::pose::Pose & pose );
46 
47  virtual std::string get_name() const;
48 
49  bool operator==(char const & chain) const;
50 
53 
54 private:
55  char chain_;
56  core::Real degrees_; // Size of one standard deviation
58 };
59 
60 } //namespace ligand_docking
61 } //namespace protocols
62 
63 #endif