Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResidueSetChainEnergyFilter.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/ResidueSetChainEnergyFilter.hh
11 /// @brief definition of filter class ResidueSetChainEnergyFilter.
12 /// @author Chris King (chrisk1@uw.edu)
13 
14 #ifndef INCLUDED_protocols_simple_filters_ResidueSetChainEnergyFilter_hh
15 #define INCLUDED_protocols_simple_filters_ResidueSetChainEnergyFilter_hh
16 
17 //unit headers
19 
20 // Project Headers
22 #include <core/types.hh>
24 #include <core/pose/Pose.fwd.hh>
28 
29 
30 namespace protocols {
31 namespace simple_filters {
32 
34 {
35 public:
36  //default ctor
38  //full ctor
40  core::scoring::ScoreType const score_type,
41  core::Real const score_type_threshold,
42  std::string string_resnums,
43  core::Size chain
44  );
45  bool apply( core::pose::Pose const & pose ) const;
47  return new ResidueSetChainEnergyFilter( *this );
48  }
50  return new ResidueSetChainEnergyFilter();
51  }
52 
53  void report( std::ostream & out, core::pose::Pose const & pose ) const;
54  core::Real report_sm( core::pose::Pose const & pose ) const;
55  core::Real compute( core::pose::Pose const &pose ) const;
58 private:
64 };
65 
66 }
67 }
68 
69 #endif