Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LigandDockingLoaders.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 protocols/ligand_docking/LigandDockingLoader.hh
11 /// @brief Declartion of the InterfaceBuilderLoader and MoveMapBuilderLoader classes
12 /// for adding named InterfaceBuilders and MoveMapBuilders into the parser's DataMap
13 /// @author Gordon Lemmon
14 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com) -- moved here from DockDesignParser.cc
15 
16 #ifndef INCLUDED_protocols_ligand_docking_LigandDockingLoaders_hh
17 #define INCLUDED_protocols_ligand_docking_LigandDockingLoaders_hh
18 
19 // Package Headers
21 
22 #include <utility/vector1.hh>
23 
24 
25 namespace protocols {
26 namespace ligand_docking {
27 
28 /// @brief A class for loading InterfaceBuilders into the XML parser's DataMap.
30 {
31 public:
33  virtual ~InterfaceBuilderLoader();
34 
35  /// @brief The InterfaceBuilderLoader will create named InterfaceBuilders and load them into the DataMap
36  virtual
37  void load_data(
38  core::pose::Pose const & pose,
39  utility::tag::TagPtr const tag,
40  moves::DataMap & data
41  ) const;
42 
43 };
44 
45 /// @brief A class for loading MoveMapBuilders into the XML parser's DataMap.
46 /// NOTE that in the input .xml file, the InterfaceBuilder must be specified before
47 /// the MoveMapBuilder
49 {
50 public:
52  virtual ~MoveMapBuilderLoader();
53 
54  /// @brief The InterfaceBuilderLoader will create named InterfaceBuilders and load them into the DataMap
55  virtual
56  void load_data(
57  core::pose::Pose const & pose,
58  utility::tag::TagPtr const tag,
59  moves::DataMap & data
60  ) const;
61 
62 };
63 
65 {
66 public:
68  virtual ~LigandAreaLoader();
69 
70  /// @brief The InterfaceBuilderLoader will create named InterfaceBuilders and load them into the DataMap
71  virtual
72  void load_data(
73  core::pose::Pose const & pose,
74  utility::tag::TagPtr const tag,
75  moves::DataMap & data
76  ) const;
77 
78 };
79 
80 } //namespace ligand_docking
81 } //namespace protocols
82 
83 #endif