Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FoldTreeFromLoopsWrapper.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/loops/FoldTreeFromLoops.hh
11 /// @author Sarel Fleishman (sarelf@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_loops_FoldTreeFromLoopsWrapper_HH
14 #define INCLUDED_protocols_loops_FoldTreeFromLoopsWrapper_HH
15 
16 // Unit headers
18 #include <protocols/moves/Mover.hh>
19 
20 // Package headers
22 
23 namespace protocols {
24 namespace loops {
25 
27 {
28 public:
30  virtual ~FoldTreeFromLoops();
31 
32  virtual void apply( Pose & pose );
33  virtual std::string get_name() const;
34 
35  virtual protocols::moves::MoverOP clone() const;
37  virtual void parse_my_tag(
38  TagPtr const tag,
40  Filters_map const &,
42  Pose const &
43  );
44 
45  void loop_str( std::string const str );
46 
47  std::string loop_str() const;
48 
49  void loops( LoopsOP const l );
50 
51  LoopsOP loops() const;
52 
53 private:
54  std::string loop_str_; // loaded at parsetime but only realized at apply
55  LoopsOP loops_; // a different interface into FoldTreeFromLoops, which takes precedence over loop_str_;
56 };
57 
58 } // namespace loops
59 } // namespace protocols
60 
61 #endif //INCLUDED_protocols_loops_FoldTreeFromLoops_HH