Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SwitchChainOrderMover.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 SwitchChainOrderMover.hh
11 /// @brief switch the chain order
12 
13 #ifndef INCLUDED_protocols_simple_moves_SwitchChainOrderMover_hh
14 #define INCLUDED_protocols_simple_moves_SwitchChainOrderMover_hh
15 
17 #include <protocols/moves/Mover.hh>
19 
22 #include <core/pose/Pose.fwd.hh>
24 
25 // C++ Headers
26 #include <string>
27 
28 #include <utility/vector1.hh>
29 
30 
31 namespace protocols {
32 namespace simple_moves {
33 
35 public:
37  // Undefinded, commenting out to fix PyRosetta build SwitchChainOrderMover( std::string const & );
38 
39  virtual void apply( core::pose::Pose & pose );
40  virtual std::string get_name() const;
41 
42  virtual moves::MoverOP clone() const;
43  virtual moves::MoverOP fresh_instance() const;
44 
45  void chain_order( std::string const co );
46  std::string chain_order() const;
47 
48  virtual void parse_my_tag(
49  utility::tag::TagPtr const tag,
51  protocols::filters::Filters_map const & filters,
52  protocols::moves::Movers_map const & movers,
53  core::pose::Pose const & pose );
54 
57 private:
59  utility::pointer::owning_ptr< protocols::moves::DataMapObj< utility::vector1< core::Size > > > residue_numbers_; /// dflt NULL; a vector of residue numbers placed on the DataMap which need to be changed due to the chain order switch
60  core::scoring::ScoreFunctionOP scorefxn_; // dflt NULL; needed to score the pose for the energy graph to behave well
61 };
62 
63 
64 } // simple_moves
65 } // protocols
66 
67 #endif