Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JScoreEvaluator.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/simple_filters/JScoreEvaluator.hh
11 /// @brief
12 /// @author James Thompson
13 ///
14 
15 #ifndef INCLUDED_protocols_simple_filters_JScoreEvaluator_hh
16 #define INCLUDED_protocols_simple_filters_JScoreEvaluator_hh
17 
18 #include <string>
19 #include <utility/vector1.hh>
20 #include <core/types.hh>
21 
22 #include <core/pose/Pose.fwd.hh>
24 
28 
29 namespace protocols {
30 namespace simple_filters {
31 
33 public:
35  std::string const & weights = "score12_full",
36  std::string const & type_set_name = "fa_standard"
37  );
38 
40 
41  virtual void apply(
42  core::pose::Pose & pose,
43  std::string tag,
45  ) const;
46 
47  virtual core::Real apply(
48  core::pose::Pose & /*pose*/
49  ) const {
50  return 0;
51  }
52 
53 private:
57 };
58 
59 } // simple_filter
60 } // protocols
61 
62 #endif // _INCLUDED_protocols_simple_filters_JScoreEvaluator_hh_