Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ContactMapEvaluator.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/ContactMapEvaluator.hh
11 /// @brief
12 /// @author James Thompson
13 
14 #ifndef INCLUDED_protocols_simple_filters_ContactMapEvaluator_hh
15 #define INCLUDED_protocols_simple_filters_ContactMapEvaluator_hh
16 
17 // libRosetta headers
18 #include <core/types.hh>
19 #include <core/pose/Pose.hh>
21 // AUTO-REMOVED #include <boost/dynamic_bitset.hpp>
22 #include <algorithm>
23 
24 #include <utility/vector1.hh>
25 
26 namespace protocols {
27 namespace simple_filters {
28 
30 
31 public:
33  core::pose::Pose const & native_pose,
34  core::Real const max_dist,
35  core::Size const min_seqsep
36  );
37 
39 
40  virtual void apply(
41  core::pose::Pose & pose,
42  std::string tag,
44  ) const;
45 
46  virtual core::Real apply(
47  core::pose::Pose & /*pose*/
48  ) const {
49  return 0;
50  }
51 
52 private:
56 };
57 
58 } // simple_filter
59 } // protocols
60 
61 #endif