Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ScoreTypeFilter.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/ScoreTypeFilter.hh
11 /// @brief definition of filter class ScoreTypeFilter.
12 /// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_simple_filters_ScoreTypeFilter_hh
15 #define INCLUDED_protocols_simple_filters_ScoreTypeFilter_hh
16 
17 //unit headers
19 
20 // Project Headers
22 #include <core/types.hh>
24 #include <core/pose/Pose.fwd.hh>
28 
29 //Auto Headers
31 
32 
33 
34 namespace protocols {
35 namespace simple_filters {
36 
38 {
39 public:
40  ScoreTypeFilter() : Filter( "ScoreType" ) {}
41  ScoreTypeFilter( core::scoring::ScoreFunctionCOP scorefxn, core::scoring::ScoreType const score_type, core::Real const score_type_threshold );
42  bool apply( core::pose::Pose const & pose ) const;
44  return new ScoreTypeFilter( *this );
45  }
47  return new ScoreTypeFilter();
48  }
49 
50  void report( std::ostream & out, core::pose::Pose const & pose ) const;
51  core::Real report_sm( core::pose::Pose const & pose ) const;
52  core::Real compute( core::pose::Pose const &pose ) const;
53  virtual ~ScoreTypeFilter();
55  void parse_def( utility::lua::LuaObject const & def,
56  utility::lua::LuaObject const & score_fxns,
57  utility::lua::LuaObject const & tasks );
58 private:
62 };
63 
64 }
65 }
66 
67 #endif