Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CutChainMover.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 ForceDisulfidesMover.hh
11 /// @brief
12 /// @author Sarel Fleishman
13 
14 #ifndef INCLUDED_protocols_simple_moves_CutChainMover_hh
15 #define INCLUDED_protocols_simple_moves_CutChainMover_hh
16 
17 // Unit headers
19 #include <protocols/moves/Mover.hh>
20 #include <core/pose/Pose.fwd.hh>
21 
22 #include <utility/vector1.hh>
23 
24 
25 namespace protocols {
26 namespace simple_moves {
27 
28 
29 /// @brief simple mover that sperates Fv from Fl into two seperate chains
30 class CutChainMover : public moves::Mover {
31 
32 public:
33  CutChainMover();
35 
36  virtual void apply( core::pose::Pose & pose );
37  virtual std::string get_name() const;
38 
40 
43 
44 
47 
48 void
50 
51 void
52 foldTree (core::pose::Pose & pose);
53 
54 core::Real bond_length() const;
55 core::Size chain_id() const;
56 
57 void bond_length(core::Real const);
58 void chain_id(core::Size const);
59 
60 private:
63 
64 };
65 
66 
67 } // moves
68 } // protocols
69 
70 #endif //INCLUDED_protocols_simple_moves_CutChainMover_HH