Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SeparateDnaFromNonDna.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 /// @brief very simple--pulls apart non-DNA (i.e. protein and friends) from DNA to facilitate DNA binding score calculation
11 
12 /// @details sets an *appropriate fold tree* for a non-DNA/DNA interface (including multichain non-DNA and/or DNA) and then simply separates non-DNA chain(s) from the DNA chain(s) with a single translation. More basic than RigidBodyMover (which maybe needs a new base class?)
13 
14 /// @author ashworth
15 
16 #ifndef INCLUDED_protocols_dna_SeparateDnaFromNonDna_hh
17 #define INCLUDED_protocols_dna_SeparateDnaFromNonDna_hh
18 
20 #include <protocols/moves/Mover.hh>
21 
22 #include <core/pose/Pose.fwd.hh>
23 
25 #include <utility/tag/Tag.fwd.hh>
26 
27 #include <numeric/xyzVector.hh>
28 
29 #include <utility/vector1.hh>
30 
31 #ifdef WIN32
32  #include <utility/tag/Tag.hh>
33 #endif
34 
35 
36 namespace protocols {
37 namespace dna {
38 
40 public:
45 
46  virtual ~SeparateDnaFromNonDna();
47 
48  virtual void apply( core::pose::Pose & pose );
49  virtual std::string get_name() const;
51 
52  ///@brief parse XML (specifically in the context of the parser/scripting scheme)
53  virtual void parse_my_tag(
54  TagPtr const,
57  moves::Movers_map const &,
58  Pose const & );
59  ///@brief required in the context of the parser/scripting scheme
60  virtual moves::MoverOP fresh_instance() const;
61  ///@brief required in the context of the parser/scripting scheme
62  virtual moves::MoverOP clone() const;
63 
64 private:
66 
67 };
68 
69 } // dna
70 } // protocols
71 
72 #endif