Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MembraneTopology.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 sw=2 noet:
3 //
4 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 /// @file
10 /// @brief
11 
12 #ifndef INCLUDED_protocols_simple_moves_MembraneTopology_hh
13 #define INCLUDED_protocols_simple_moves_MembraneTopology_hh
14 
16 #include <protocols/moves/Mover.hh>
17 
18 // Project Headers
19 #include <core/pose/Pose.fwd.hh>
20 #include <core/types.hh>
21 // AUTO-REMOVED #include <core/chemical/AA.hh>
22 
23 //parsing
24 #include <utility/tag/Tag.fwd.hh>
26 #include <protocols/moves/Mover.fwd.hh> //Movers_map
27 #include <protocols/filters/Filter.fwd.hh> //Filters_map
28 
29 #include <utility/vector1.hh>
30 
31 
32 // Utility headers
33 
34 // C++ headers
35 
36 // Unit headers
37 
38 // @brief Simple wrapper to MembraneTopology which lives in core/scoring
39 
40 namespace protocols {
41 namespace simple_moves {
42 
43 /// @brief A mover to change one torsion angle
45 {
46 private:
48 public:
49  ///@brief default ctor
51  virtual ~MembraneTopology();
52 
53  virtual void apply( core::pose::Pose & pose );
54  virtual std::string get_name() const;
55  virtual protocols::moves::MoverOP clone() const {
57  }
60  }
61 
62  void parse_my_tag( utility::tag::TagPtr const tag,
66  core::pose::Pose const & );
67  std::string span_file() const { return span_file_; }
68  void span_file( std::string const s ){ span_file_ = s; }
69 
70 private:
72 };
73 
74 } // moves
75 } // protocols
76 
77 #endif //INCLUDED_protocols_simple_moves_MembraneTopology_HH_
78