Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopMoverFromCommandLine.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/movers/LoopMoverFromCommandLine.hh
11 /// @brief Header for parseable class to build loops from command line
12 /// @author Jordan Willis(Jordan.r.willis@vanderbilt.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_movers_LoopMoverFromCommandLine_HH
15 #define INCLUDED_protocols_protein_interface_design_movers_LoopMoverFromCommandLine_HH
16 
17 #include <core/pose/Pose.fwd.hh>
19 #include <utility/tag/Tag.fwd.hh>
21 #include <core/types.hh>
22 // AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
23 // AUTO-REMOVED #include <core/fragment/FragSet.fwd.hh>
24 // AUTO-REMOVED #include <protocols/loops/Loops.hh>
26 
28 
30 #include <utility/vector1.hh>
31 
32 //Auto Headers
34 
35 
36 namespace protocols {
37 namespace protein_interface_design {
38 namespace movers {
39 
41 {
42 public:
45  std::string const protocol,
46  bool const perturb,
47  bool const refine,
48  core::scoring::ScoreFunctionOP & hires_score,
49  core::scoring::ScoreFunctionOP & lores_score,
50  std::string const loop_file_name,
52  );
53  // various setters and getters
54  bool perturb() const { return perturb_;}
55  void perturb( bool const setting ) { perturb_ = setting; }
56  bool refine() const { return refine_; }
57  void refine( bool const setting ) { refine_ = setting; }
58  void refine( std::string const setting ){ string_refine_ = setting; }
59 // void string_refine( std::string const setting ){ string_refine_ = setting;}
61  void intermedrelax( std::string const setting ){ intermedrelax_ = setting;}
63  void relax( std::string const setting ){ relax_ = setting; }
64  std::string relax() const{ return relax_; }
65  void remodel( std::string const setting ){ remodel_ = setting; }
66  std::string remodel() const{ return remodel_; }
69  void apply( core::pose::Pose & pose );
70  virtual std::string get_name() const;
72  virtual ~LoopMoverFromCommandLine();
73 
74 private:
81 };
82 
83 } //moves
84 } //protocols
85 }
86 
87 #endif