Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopMover_CCD.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
11 /// @brief
12 /// @author Mike Tyka
13 
14 #ifndef INCLUDED_protocols_loops_loop_mover_perturb_LoopMover_CCD_hh
15 #define INCLUDED_protocols_loops_loop_mover_perturb_LoopMover_CCD_hh
16 
17 
20 #include <protocols/moves/Mover.hh>
21 
22 #include <core/types.hh>
23 
26 #include <core/pose/Pose.fwd.hh>
29 
32 
33 #include <utility/tag/Tag.fwd.hh>
34 
35 #include <utility/vector1.hh>
36 
37 ///////////////////////////////////////////////////////////////////////////////
38 namespace protocols {
39 namespace loops {
40 namespace loop_mover {
41 namespace perturb {
42 
43 ////////////////////////////////////////////////////////////////////////////////////////
44 /// @details the main function to model one single loop in centroid mode. The
45 /// modeling algorithm is fragment_ccd_min_trial, which consists of perturbing
46 /// the loop conformation by fragment insertion , then close the loop by CCD loop
47 /// closure, then minimize the loop conformation and finally subject it to Monte
48 /// Carlo acceptance or rejection. The loop conformation will be initialized as
49 /// extended conformation if it is specified in the loop definition, resembling
50 /// ab initio loop modeling in real practice. The loop has to be long enough for
51 /// inserting certain length of fragments.
52 /////////////////////////////////////////////////////////////////////////////////////////
54 public:
55  //constructor
57 
60  );
61 
65  );
66 
71  );
72 
73  //destructor
75 
76  virtual std::string get_name() const;
77 
78  /// @brief Clone this object
79  virtual protocols::moves::MoverOP clone() const;
80 
82  virtual protocols::loops::LoopsCOP get_loops() const;
84 
85 
86 protected:
87  std::vector< core::fragment::FragSetOP > frag_libs_;
88 
90  protocols::loops::Loop const & loop );
91 
92  virtual basic::Tracer & tr() const;
93 
94 };
95 
96 std::ostream &operator<< ( std::ostream &os, LoopMover_Perturb_CCD const &mover );
97 
98 } //namespace perturb
99 } //namespace loop_mover
100 } //namespace loops
101 } //namespace protocols
102 
103 #endif //INCLUDED_protocols_loops_loop_mover_perturb_LoopMover_CCD_HH