Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
protocols
ligand_docking
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
20
#include <
protocols/jd2/parser/DataLoader.hh
>
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.
29
class
InterfaceBuilderLoader
:
public
jd2::parser::DataLoader
30
{
31
public
:
32
InterfaceBuilderLoader
();
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
48
class
MoveMapBuilderLoader
:
public
jd2::parser::DataLoader
49
{
50
public
:
51
MoveMapBuilderLoader
();
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
64
class
LigandAreaLoader
:
public
jd2::parser::DataLoader
65
{
66
public
:
67
LigandAreaLoader
();
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
Generated on Sat Jun 1 2013 11:56:03 for Rosetta 3.5 by
1.8.4