Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ShortLoopClosure.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 ///
11 /// @author Oliver Lange
12 ///
13 /// this class replaces the frag_close routines in jumping_pairings.cc
14 /// the short loop is copied into a special purpose pose that just contains the loop-fragment
15 /// with the hope that things are speeded up... which may or may not be true!
16 /// only the linear chainbreak score is used.
17 
18 #ifndef INCLUDED_protocols_loops_loop_closure_ccd_ShortLoopClosure_hh
19 #define INCLUDED_protocols_loops_loop_closure_ccd_ShortLoopClosure_hh
20 
21 // Unit Headers
23 
24 // Package Headers
26 
27 #include <utility/vector1.hh>
28 
29 namespace protocols {
30 namespace loops {
31 namespace loop_closure {
32 namespace ccd {
33 
34 class ShortLoopClosure : public LoopClosure {
36 public:
37 
38  //c'stor
41  Loop loop_def,
43  );
44 
45  //@brief run protocol on pose
46  virtual bool apply( core::pose::Pose const& pose );
47 
48  ///@brief save the loop-fragment in closure_frames_
49  // overwritten to realign frames to target sequence
50  virtual void catch_fragment( core::pose::Pose const& short_pose );
51 private:
53 };
54 
55 } // namespace ccd
56 } // namespace loop_closure
57 } // namespace loops
58 } // namespace protocols
59 
60 #endif //INCLUDED_protocols_loops_loop_closure_ccd_ShortLoopClosure_hh
61