Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
EvaluatedTrialMover.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 relax_initialization_protocols
11 /// @brief
12 /// @detailed
13 /// For diagnosis. Run with this TrialMover and get a log-file containing output from the provided PoseEvalutor
14 /// and if it was accepted or not.
15 ///
16 ///
17 /// @author Oliver Lange
18 
19 
20 
21 #ifndef INCLUDED_protocols_simple_filters_EvaluatedTrialMover_hh
22 #define INCLUDED_protocols_simple_filters_EvaluatedTrialMover_hh
23 
24 
25 // Unit Headers
26 
27 
28 // Package Headers
29 // AUTO-REMOVED #include <protocols/evaluation/PoseEvaluator.hh>
30 // AUTO-REMOVED #include <protocols/simple_filters/ScoreEvaluator.hh>
33 
34 // Project Headers
36 #include <core/pose/Pose.fwd.hh>
37 
38 // ObjexxFCL Headers
39 
40 // Utility headers
41 #include <utility/pointer/ReferenceCount.hh>
42 // AUTO-REMOVED #include <utility/vector1.hh>
43 
44 //// C++ headers
45 #include <list>
46 
48 #include <utility/vector1.hh>
49 
50 
51 namespace protocols {
52 namespace simple_filters {
53 
54 
57 
58 
60 public:
61  /// c'stor
63  moves::MoverOP mover_in,
64  moves::MonteCarloOP mc_in,
65  evaluation::PoseEvaluatorOP evaluator_in,
66  std::string tag
67  );
69 
70  /// apply does a single trial (which is a mover apply and a boltzmann)
71  virtual void apply( core::pose::Pose & pose );
72 
73  virtual std::string get_name() const;
74 
75  /// write all collected output to file (appends if file exist )
76  void dump_file( std::string fn );
77 private:
81  std::string tag_; //the decoy_output tag
82 };
83 
84 
85 }
86 }
87 
88 #endif