Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SetupForDensityScoringMover.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
11 /// @brief protocols for folding into density
12 /// @detailed
13 /// @author Frank DiMaio
14 
15 
16 #ifndef INCLUDED_protocols_electron_density_SetupForDensityScoringMover_hh
17 #define INCLUDED_protocols_electron_density_SetupForDensityScoringMover_hh
18 
19 #include <utility/tag/Tag.fwd.hh>
21 #include <core/types.hh>
22 #include <core/pose/Pose.fwd.hh>
24 // AUTO-REMOVED #include <core/scoring/electron_density/util.hh>
25 #include <protocols/moves/Mover.hh>
26 // AUTO-REMOVED #include <protocols/loops/Loops.hh>
27 
28 //// C++ headers
29 // AUTO-REMOVED #include <cstdlib>
30 #include <string>
31 
33 #include <utility/vector1.hh>
34 
35 namespace protocols {
36 namespace electron_density {
37 
38 // set a pose for density scoring
39 // wraps 'addVirtualResAsRoot' + 'dockPoseIntoMap'
41 public:
43 
44  virtual void apply( core::pose::Pose & pose );
45 
46  moves::MoverOP clone() const;
47 
48  virtual std::string get_name() const;
49 
50  virtual void mask( protocols::loops::Loops const & loops );
51 
53 
54  virtual void parse_my_tag(
55  utility::tag::TagPtr const tag,
56  moves::DataMap &data,
57  filters::Filters_map const &filters,
58  moves::Movers_map const &movers,
59  core::pose::Pose const & pose );
60 
61 private:
65 };
66 
67 // set up fold tree _and_ scoring function for density scoring
69 
71 
72 }
73 }
74 
75 #endif