Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PlacementMinimizationMover.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 protocols/protein_interface_design/movers/PlacementMinimizationMover.hh
11 /// @brief definition of a class for making the placement auction used by PlaceSimultaneouslyMover
12 /// @author Sarel Fleishman (sarelf@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_movers_PlacementMinimizationMover_hh
15 #define INCLUDED_protocols_protein_interface_design_movers_PlacementMinimizationMover_hh
16 
17 // Project Headers
18 #include <core/pose/Pose.fwd.hh>
19 #include <core/types.hh>
20 #include <utility/tag/Tag.fwd.hh>
25 #include <utility/vector1.fwd.hh>
26 
29 #include <utility/vector1.hh>
30 
31 //Auto Headers
33 
34 
35 
36 namespace protocols {
37 namespace protein_interface_design {
38 namespace movers {
39 
40 /// @brief a simple rb-minimization in a bb-stub constraint biased forcefield.
41 /// Note that this mover is dependent on a placement mover for setting its stubsets
43 {
44 public:
45  typedef std::pair< protocols::hotspot_hashing::HotspotStubSetOP, std::pair< protocols::hotspot_hashing::HotspotStubOP, core::Size > > StubSetStubPos;
46 public:
48  void apply( core::pose::Pose & pose );
49  virtual std::string get_name() const;
53  virtual void parse_my_tag( utility::tag::TagPtr const tag,
57  core::pose::Pose const & );
58 //// mutators for Placement movers to copy their internals onto auctionMover
59  void host_chain( core::Size const hc );
60  //void max_cb_cb_dist( core::Real const mccd );
61  void cb_force( core::Real const cf );
64 private:
68 };
69 
70 } //movers
71 } //protein_interface_design
72 } //protocols
73 
74 #endif /*INCLUDED_protocols_protein_interface_design_movers_PlacementMinimization_HH*/
75