Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InterlockAroma.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/flxbb/InterlockAroma.hh
11 /// @brief perform cycles of design and relax with filter
12 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13 
14 #ifndef INCLUDED_protocols_flxbb_InterlockAroma_hh
15 #define INCLUDED_protocols_flxbb_InterlockAroma_hh
16 
17 // Unitt Header
19 
20 // Project Headers
21 #include <core/types.hh>
22 #include <core/pose/Pose.fwd.hh>
24 
25 #include <protocols/moves/Mover.hh>
26 #include <utility/tag/Tag.fwd.hh>
27 
28 #include <utility/vector1.hh>
29 
30 
31 namespace protocols {
32 namespace flxbb{
33 
34 
35 ///////////////////////////////////////////////////////////////////////////////////////////////////////
37 public:
38 
39 
41 
43  typedef core::Size Size;
44  typedef core::Real Real;
49 
54 
55 
56 public: // constructor/destructor
57 
58 
59  /// @brief default constructor
61 
62  /// @brief copy constructor
63  InterlockAroma( InterlockAroma const & rval );
64 
65  /// @brief destructor
66  virtual ~InterlockAroma();
67 
68 
69 public: // virtual constructors
70 
71 
72  /// @brief clone this object
73  virtual
74  MoverOP clone() const;
75 
76 
77  /// @brief create this type of object
78  virtual
79  MoverOP fresh_instance() const;
80 
81 
82 public: // virtual main operation
83 
84 
85  /// @brief mover apply
86  virtual void apply( Pose & pose );
87 
88  virtual std::string get_name() const;
89 
90 
91 public:// parser
92 
93 
94  virtual void parse_my_tag( TagPtr const tag,
95  DataMap & data,
96  Filters_map const &,
97  Movers_map const &,
98  Pose const & );
99 
100 
101 private:
102 
103 
104  /// @brief score function
106 
107  /// @brief input secondary structure information
109 
110  /// @brief
112 
113  /// @brief
115 
116  // @brief Exclude aromatic chi2 rotamers, of which angles are around 0
118 
119  // @brief
121 
122  // @brief
123  bool verbose_;
124 
125 
126 };
127 
128 
129 } // namespace flxbb
130 } // namespace protocols
131 
132 #endif