Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TetherLigand.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 header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_TetherLigand_hh
15 #define INCLUDED_protocols_ligand_docking_TetherLigand_hh
16 
17 // Unit Headers
18 
20 
21 // Package Headers
22 #include <protocols/moves/Mover.hh>
23 
24 //// Scripter Headers
25 #include <utility/tag/Tag.fwd.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 
33 ///////////////////////////////////////////////////////////////////////
34 
35 namespace protocols {
36 namespace ligand_docking {
37 
38 ///@brief
40 {
41 public:
42  TetherLigand();
43  TetherLigand(const char & chain, const core::Real & angstroms);
44  virtual ~TetherLigand();
45  TetherLigand(TetherLigand const & that);
46 
47  virtual void apply( core::pose::Pose & pose );
48 
49  virtual std::string get_name() const;
50 
51  void release(core::pose::Pose & pose);
52 
54  get_ligand_tether() const;
55 
56 private:
57  char chain_;
58  core::Real angstroms_; //size of one stdev for ligand restraint
60 };
61 
64  core::Size const lig_id,
65  core::Real const stddev_Angstroms,
66  core::pose::Pose & pose
67 );
68 
69 } //namespace ligand_docking
70 } //namespace protocols
71 
72 #endif