Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopFinder.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/protein_interface_design/movers/LoopFinder.hh
11 /// @brief Header for class to find loops (parseable options to control how loops are found)
12 /// @author Jacob Corn (jecorn@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_movers_LoopFinder_hh
15 #define INCLUDED_protocols_protein_interface_design_movers_LoopFinder_hh
16 
17 #include <core/pose/Pose.fwd.hh>
18 //#include <protocols/moves/Mover.hh>
19 #include <core/types.hh>
21 // AUTO-REMOVED #include <protocols/loops/Loops.hh>
22 #include <utility/tag/Tag.fwd.hh>
23 // AUTO-REMOVED #include <protocols/loops/util.hh>
24 
25 // the following must be included because LoopFinder is derived from DRMover
26 //#include <core/scoring/ScoreFunction.fwd.hh>
27 //#include <core/pose/Pose.fwd.hh>
28 //#include <core/pack/task/PackerTask.fwd.hh>
29 //#include <core/pack/task/TaskFactory.fwd.hh>
30 
31 #include <utility/vector1.hh>
32 
33 //Auto Headers
35 
36 
37 namespace protocols {
38 namespace protein_interface_design {
39 namespace movers {
40 
42 {
43 public:
44  LoopFinder();
45  LoopFinder(
46  bool const interface,
47  bool const ch1,
48  bool const ch2,
49  core::Size const min_length,
50  core::Size const max_length,
51  core::Size const mingap,
52  core::Size const resnum,
53  core::Real const ca_ca_distance,
54  core::Real const iface_cutoff,
56  );
57  virtual ~LoopFinder();
58 
61  void apply( core::pose::Pose & pose );
62  virtual std::string get_name() const;
64 private:
66  bool ch1_, ch2_;
71  //protocols::moves::DataMapOP data_;
73 };
74 
75 } // movers
76 } // protein_interface_design
77 } // protocols
78 
79 
80 #endif /*INCLUDED_protocols_protein_interface_design_movers_LoopFinder_HH*/