Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopMover_QuickCCD.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_QuickCCD_hh
15 #define INCLUDED_protocols_loops_loop_mover_perturb_LoopMover_QuickCCD_hh
16 
17 // package headers
20 #include <protocols/moves/Mover.hh>
21 
22 // project headers
23 #include <core/types.hh>
26 #include <core/pose/Pose.fwd.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 // C++ Headers
33 
34 
35 namespace protocols {
36 namespace loops {
37 namespace loop_mover {
38 namespace perturb {
39 
40 /// @brief LoopMover utilizing fragment insertion, ccd loop closure, and
41 /// minimization
43 
44 public: // construct/destruct
45 
46  /// @brief Loops constructor
47  /// @remarks Will be initialized with centroid level score function 'score4L'.
49 
50 
51  /// @brief Loops constructor
52  /// @param[in] loops_in the set of loops to model
53  /// @remarks Will be initialized with centroid level score function 'score4L'.
56  );
57 
58  /// @brief Loops & ScoreFunction constructor
59  /// @param[in] loops_in the set of loops to model
60  /// @param[in] scorefxn desired ScoreFunction
64  );
65 
66  /// @brief Loops & ScoreFunction constructor
67  /// @param[in] loops_in the set of loops to model
68  /// @param[in] scorefxn desired ScoreFunction
69  /// @param[in] fragset is the FragSet to be used
70  /// line?
75  );
76 
77  //destructor
79 
80  virtual std::string get_name() const;
81 
82 public: // virtual constructors
83 
84  /// @brief clone this object
85  virtual protocols::moves::MoverOP clone() const;
86 
87 public: // accessors
88 
89  /// @brief randomize loops prior to loop modeling?
90  inline
91  bool randomize_loop() const {
92  return randomize_loop_;
93  }
94 
95 
96 public: // mutators
97 
98 
99  /// @brief indicate whether loops should be randomized prior to modeling
100  inline
101  void randomize_loop( bool const flag ) {
102  randomize_loop_ = flag;
103  }
104 
105 
106  /// @brief set default settings
107  /// @details default settings are as follows:
108  /// <ul>
109  /// <li> randomize_loop() = true
110  /// </ul>
112  randomize_loop_ = true;
113  }
114 
115 protected: // virtual loop operations
116 
117  /// @brief loop modeling protocol implementation
118  virtual LoopResult model_loop(
119  core::pose::Pose & pose,
120  protocols::loops::Loop const & loop
121  );
122 
123  virtual basic::Tracer & tr() const;
124 
125 protected: // data. should be private!
126 
127  /// @brief randomize loops prior to performing loop modeling?
129 }; // class LoopMover_Perturb_QuickCCD
130 
131 
133  core::pose::Pose & pose,
134  protocols::loops::Loop const & loop,
136 );
137 
138 } //namespace perturb
139 } //namespace loop_mover
140 } //namespace loops
141 } //namespace protocols
142 
143 #endif //INCLUDED_protocols_loops_loop_mover_perturb_LoopMover_QuickCCD_hh