Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DME_FilterMover.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 TrialMover
11 /// @brief performs a move and accepts it according to Monte Carlo accept/reject criterion.
12 /// @author Monica Berrondo
13 
14 
15 #ifndef INCLUDED_protocols_simple_moves_DME_FilterMover_hh
16 #define INCLUDED_protocols_simple_moves_DME_FilterMover_hh
17 
18 // Package headers
19 // #include <protocols/simple_moves/MinMover.hh>
20 // #include <protocols/moves/MonteCarlo.fwd.hh>
21 // #include <protocols/moves/MonteCarlo.hh>
22 #include <protocols/moves/Mover.hh>
23 // #include <protocols/moves/MoverStatistics.hh>
24 
25 #include <core/types.hh>
26 
27 #include <core/pose/Pose.fwd.hh>
28 
29 // ObjexxFCL Headers
30 
31 // C++ Headers
32 #include <map>
33 #include <string>
34 
35 // Utility Headers
36 // AUTO-REMOVED #include <numeric/random/random.hh>
37 
38 #include <utility/vector1.hh>
39 
40 
41 namespace protocols {
42 namespace simple_moves {
43 
44 
46 
47 public:
48 
49  typedef core::Real Real;
50  typedef core::Size Size;
51 
52 public:
53 
54  // constructor with arguments
55  DME_FilterMover( protocols::moves::MoverOP my_mover, Real const dme_threshold, Size const max_tries ):
56  protocols::moves::Mover( my_mover->type()+"DME_Filter" ),
57  my_mover_( my_mover ),
58  dme_threshold_( dme_threshold ),
59  max_tries_( max_tries )
60  {}
61 
62  virtual
63  void
64  apply( core::pose::Pose & pose );
65 
66  virtual std::string get_name() const;
67 
68 private:
69 
73 
74 };
75 
76 } // moves
77 } // protocols
78 
79 
80 #endif