Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LigandArea.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/protocols/ligand_docking/ligand_options/Interface.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_LigandArea_hh
15 #define INCLUDED_protocols_ligand_docking_LigandArea_hh
16 
17 //// Unit Headers
19 // AUTO-REMOVED #include <protocols/ligand_docking/ligand_options/Interface.fwd.hh>
20 
21 //// Package Headers
22 #include <core/types.hh>
23 // AUTO-REMOVED #include <core/pose/Pose.fwd.hh>
24 // AUTO-REMOVED #include <core/conformation/Residue.fwd.hh>
25 
26 //// Utility Headers
27 #include <utility/pointer/ReferenceCount.hh>
28 #include <utility/vector1.hh>
29 #include <utility/tag/Tag.fwd.hh>
30 
31 //// C++ headers
32 
33 
34 ///////////////////////////////////////////////////////////////////////
35 
36 namespace protocols {
37 namespace ligand_docking {
38 
40 {
41 public:
42  virtual ~LigandArea();
43 
44  LigandArea();
45 
46  void parse_my_tag(
47  utility::tag::TagPtr const tag
48  );
49 
50  char chain_;
51  core::Real cutoff_;// angstroms from ligand to interface residue
52  core::Real Calpha_restraints_;// size of one standard deviation (angstroms) for restraints on C-alphas
53  core::Real minimize_ligand_; // size of one standard deviation (degrees) for ligand torsion angles
59 };
60 
61 }
62 }
63 
64 #endif