Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AbrelaxMover.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 protocols/abinitio/AbrelaxMover.cc
11 /// @author Oliver Lange
12 /// @author Christopher Miles (cmiles@uw.edu)
13 /// @brief This class will be handled to a SampleProtocol as a control instance
14 /// @detailed responsibilities:
15 /// know which chainbreaks to penalize and close
16 /// know which jumps to use during sampling, which (if any) to keep after loop-closing
17 /// supply a JumpMover if jumps should be moved
18 /// supply a MoveMap
19 /// supply a "StrictMoveMap": the protocol should not move anything that is dissallowed in strict_movemap(),
20 /// it should try to move just stuff in movemap()
21 
22 #ifndef INCLUDED_protocols_abinitio_AbrelaxMover_hh
23 #define INCLUDED_protocols_abinitio_AbrelaxMover_hh
24 
25 // Unit Headers
27 // AUTO-REMOVED #include <protocols/abinitio/FragmentSampler.hh>
28 #include <protocols/moves/Mover.hh>
31 
32 // Package Headers
34 // AUTO-REMOVED #include <protocols/checkpoint/CheckPointer.hh>
35 
36 // Project Headers
37 #include <core/types.hh>
38 #include <core/pose/Pose.fwd.hh>
39 
40 // C++ headers
41 #include <string>
42 
44 #include <utility/vector1.hh>
45 
46 
47 namespace protocols {
48 namespace abinitio {
49 
50 class AbrelaxMover : public moves::Mover {
51 public:
52  AbrelaxMover();
53 
54  virtual ~AbrelaxMover();
55 
56  virtual void apply( core::pose::Pose &pose );
57 
58  virtual std::string get_name() const;
59 
60  void set_defaults();
61 
62  void clear(); //set's all pointers to zero
63 
64  virtual moves::MoverOP fresh_instance() const { return new AbrelaxMover(); }
65 
67 
69 
71 
73 
75 
77 
79 
80  void post_loop_closure_protocol( moves::MoverOP move ); //e.g. to idealize after loop-closing
81 
82  void pre_loop_closure_protocol( moves::MoverOP move ); //e.g. to idealize after loop-closing
83 
85 
86 private:
88 
90 
96 
98 };
99 
100 }
101 }
102 
103 #endif // INCLUDED_protocols_abinitio_AbrelaxMover_hh