Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LHSnugFitLegacy.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
6 // (c) under license. The Rosetta software is developed by the contributing
7 // (c) members of the Rosetta Commons. For more information, see
8 // (c) http://www.rosettacommons.org. Questions about this can be addressed to
9 // (c) University of Washington UW TechTransfer, email:license@u.washington.edu
10 
11 /// @file protocols/antibody2/LHSnugFitLegacy.hh
12 /// @brief Build a homology model of an antibody2
13 /// @detailed
14 ///
15 ///
16 /// @author Jianqing Xu (xubest@gmail.com)
17 
18 
19 
20 #ifndef INCLUDED_protocols_antibody2_LHSnugFitLegacy_hh
21 #define INCLUDED_protocols_antibody2_LHSnugFitLegacy_hh
22 
23 
24 
25 
26 
27 
28 #include <core/pose/Pose.hh>
30 #include <protocols/moves/Mover.hh>
32 #include <protocols/loops/Loops.hh>
34 
36 
37 
38 
39 using namespace core;
40 namespace protocols {
41 namespace antibody2 {
42 
44 
45 
46 public:
47 
48  /// @brief default constructor
50 
51  /// @brief constructor with arguments
54  LHSnugFitLegacy(antibody2::AntibodyInfoOP antibody_in, bool camelid );
55 
56  virtual protocols::moves::MoverOP clone() const;
57 
58  /// @brief default destructor
59  ~LHSnugFitLegacy();
60 
61  void set_default();
62 
63 
64  virtual void apply( core::pose::Pose & pose );
65 
66  virtual std::string get_name() const;
67 
69  tf_ = new core::pack::task::TaskFactory(*tf);
70  }
71 
72 private:
73 
75 
77  bool benchmark_;
84 
85  void init(loops::LoopsOP loops_in, bool camelid);
86 
87  void setup_objects();
88 
89  void snugfit_mcm_protocol( core::pose::Pose & pose_in, loops::Loops loops_in );
90 
91  //packer task
93 
94 };
95 
96 
97 
98 
99 
100 
101 
102 } // namespace antibody2
103 } // namespace protocols
104 
105 #endif
106 
107 
108 
109 
110 
111 
112 
113