Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RandomConformers.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 core/pack/task/ResfileReader.hh
11 /// @brief this class chooses a random conformer for every residue in a specified chain
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_RandomConformers_hh
15 #define INCLUDED_protocols_ligand_docking_RandomConformers_hh
16 
17 #include <protocols/moves/Mover.hh>
18 #include <utility/vector1.hh>
19 
20 ///////////////////////////////////////////////////////////////////////
21 
22 namespace protocols {
23 namespace ligand_docking {
24 
26 {
27 public:
29  virtual ~RandomConformers();
30  RandomConformers(RandomConformers const & that);
31 
32  virtual protocols::moves::MoverOP clone() const;
34  virtual std::string get_name() const;
35 
36  //void set_chain(std::string chain);
37  void parse_my_tag(
38  utility::tag::TagPtr const tag,
42  core::pose::Pose const &
43  );
44 
45  void apply(core::pose::Pose & pose);
46 
47  // Undefined, commenting out to make PyRosetta compile
48  //RandomConformers(
49  // core::pose::Pose & pose,
50  // std::set< protocols::ligand_docking::ResidueTorsionRestraintsOP > const & restraints
51  //);
52 
53 private:
55  void apply_residue( core::Size const residue_id, core::pose::Pose & pose );
56 };
57 
58 } //namespace ligand_docking
59 } //namespace protocols
60 
61 #endif