Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymDockingLowRes.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 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 /// @file SymDockingLowRes
10 /// @brief low resolution mode for symmetrical docking
11 /// @author Ingemar Andre
12 
13 
14 #ifndef INCLUDED_protocols_symmetric_docking_SymDockingLowRes_hh
15 #define INCLUDED_protocols_symmetric_docking_SymDockingLowRes_hh
16 
17 // Package headers
18 
20 // AUTO-REMOVED #include <core/chemical/ResidueTypeSet.fwd.hh>
22 #include <core/pose/Pose.fwd.hh>
25 #include <protocols/moves/Mover.hh>
26 // AUTO-REMOVED #include <protocols/moves/MoverContainer.hh>
28 
30 #include <utility/vector1.hh>
31 
32 
33 namespace protocols {
34 namespace symmetric_docking {
35 
37 {
38  typedef core::Real Real;
39 
40 public:
41 
42  // default constructor
43  //SymDockingLowRes();
44 
45  // constructor with arguments
47  // default constructor
48 
49  moves::MoverOP clone() const;
50 
52 
53  void set_default( core::pose::Pose & pose );
54  void set_default_mc( core::pose::Pose & pose );
57 
59 
60  // protocol functions
61  virtual void apply( core::pose::Pose & pose );
62  void rigid_body_trial( core::pose::Pose & pose );
63  virtual std::string get_name() const;
64 
65 private:
66  // protocol stuff
72 
73  // docking
76  bool chi_, bb_, nb_list_;
77 
79 
80 };
81 
82 } // symmetric_docking
83 } // protocols
84 
85 #endif