Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HelixKinkFilter.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 ./src/protocols/fldsgn/filters/HelixKinkFilter.hh
11 /// @brief header file for HelixKinkFilter class.
12 /// @detailed
13 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
14 
15 
16 #ifndef INCLUDED_protocols_fldsgn_filters_HelixKinkFilter_hh
17 #define INCLUDED_protocols_fldsgn_filters_HelixKinkFilter_hh
18 
19 // Unit Headers
21 
22 // Package Headers
24 
25 // Project Headers
26 #include <core/pose/Pose.fwd.hh>
27 
28 // Utility headers
29 
30 // Parser headers
34 #include <utility/tag/Tag.fwd.hh>
35 
36 #include <utility/vector1.hh>
37 
38 
39 //// C++ headers
40 
41 namespace protocols {
42 namespace fldsgn {
43 namespace filters {
44 
46 public:
47 
48 
52 
54  typedef core::Real Real;
55  typedef core::Size Size;
56 
58 
63 
64 
65 public:// constructor/destructor
66 
67 
68  // @brief default constructor
70 
71  // @brief copy constructor
72  HelixKinkFilter( HelixKinkFilter const & rval );
73 
74  virtual ~HelixKinkFilter(){}
75 
76 
77 public:// virtual constructor
78 
79 
80  // @brief make clone
81  virtual FilterOP clone() const { return new HelixKinkFilter( *this ); }
82 
83  // @brief make fresh instance
84  virtual FilterOP fresh_instance() const { return new HelixKinkFilter(); }
85 
86 
87 public:// accessor
88 
89 
90  // @brief get name of this filter
91  virtual std::string name() const { return "HelixKinkFilter"; }
92 
93 
94 public:// parser
95 
96 
97  virtual void parse_my_tag( TagPtr const tag,
98  DataMap &,
99  Filters_map const &,
100  Movers_map const &,
101  Pose const & );
102 
103 
104 public:// virtual main operation
105 
106 
107  // @brief returns true if the given pose passes the filter, false otherwise.
108  // In this case, the test is whether the give pose is the topology we want.
109  virtual bool apply( Pose const & pose ) const;
110 
111 
112 private:
113 
114 
115  /// @brief
117 
118  /// @brief
120 
121 };
122 
123 } // filters
124 } // fldsgn
125 } // protocols
126 
127 #endif