Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InterfaceScoreCalculator.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_InterfaceScoreCalculator_hh
15 #define INCLUDED_protocols_ligand_docking_InterfaceScoreCalculator_hh
16 
17 // Unit Headers
18 #include <protocols/moves/Mover.hh>
20 
21 // Scripter Headers
22 #include <utility/tag/Tag.fwd.hh>
25 // AUTO-REMOVED #include <protocols/qsar/scoring_grid/GridManager.hh>
26 
27 //// Project Headers
28 // AUTO-REMOVED #include <core/pose/Pose.hh>
29 #include <protocols/jd2/Job.fwd.hh>
31 
32 #include <utility/vector1.hh>
33 
34 
35 ///////////////////////////////////////////////////////////////////////
36 
37 namespace protocols {
38 namespace ligand_docking {
39 
41 {
42 public:
44  virtual ~InterfaceScoreCalculator();
46 
47  virtual protocols::moves::MoverOP clone() const;
49  virtual std::string get_name() const;
50 
51  void chains(std::vector<std::string> const & chains);
52 
54 
55  void parse_my_tag(
56  utility::tag::TagPtr const tag,
60  core::pose::Pose const &
61  );
62 
63  void apply(core::pose::Pose & pose);
64 
65 private:
69 
70  void
72  core::pose::Pose & pose,
74  ) const;
75 
76  void
78  core::pose::Pose const & after,
80  ) const;
81 
82  void
84  core::Size jump_id,
85  core::pose::Pose const & after,
87  ) const;
88 
89 };
90 
91 } //namespace ligand_docking
92 } //namespace protocols
93 
94 #endif