Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DnaInterfaceMinMover.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 DnaInterfaceMinMover.hh
11 /// @brief A mover that minimizes protein residues near DNA
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_dna_DnaInterfaceMinMover_hh
15 #define INCLUDED_protocols_dna_DnaInterfaceMinMover_hh
16 
20 
22 #include <utility/tag/Tag.fwd.hh>
23 #include <core/pose/Pose.fwd.hh>
24 
25 #include <utility/vector1.hh>
26 
27 
28 namespace protocols {
29 namespace dna {
30 
32 public:
34 public:
38  virtual ~DnaInterfaceMinMover();
40 
41  virtual void apply( core::pose::Pose & );
42  virtual std::string get_name() const;
43 
45  void chi( bool value ) { chi_ = value; }
46  void bb( bool value ) { bb_ = value; }
47  void reset_from_interface();
48 
49  ///@brief parse XML (specifically in the context of the parser/scripting scheme)
50  virtual void parse_my_tag(
51  TagPtr const,
54  moves::Movers_map const &,
55  core::pose::Pose const & );
56 
57  ///@brief required in the context of the parser/scripting scheme
58  virtual moves::MoverOP fresh_instance() const;
59  ///@brief required in the context of the parser/scripting scheme
60  virtual moves::MoverOP clone() const;
61 
62 private:
64  bool chi_;
65  bool bb_;
66 };
67 
68 } // namespace dna
69 } // namespace protocols
70 
71 #endif