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
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
>
19
#include <
protocols/ligand_docking/InterfaceScoreCalculator.fwd.hh
>
20
21
// Scripter Headers
22
#include <utility/tag/Tag.fwd.hh>
23
#include <
protocols/moves/DataMap.fwd.hh
>
24
#include <
protocols/filters/Filter.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
>
30
#include <
core/scoring/ScoreFunction.fwd.hh
>
31
32
#include <utility/vector1.hh>
33
34
35
///////////////////////////////////////////////////////////////////////
36
37
namespace
protocols {
38
namespace
ligand_docking {
39
40
class
InterfaceScoreCalculator
:
public
protocols::moves::Mover
41
{
42
public
:
43
InterfaceScoreCalculator
();
44
virtual
~InterfaceScoreCalculator
();
45
InterfaceScoreCalculator
(
InterfaceScoreCalculator
const
& that);
46
47
virtual
protocols::moves::MoverOP
clone
()
const
;
48
virtual
protocols::moves::MoverOP
fresh_instance
()
const
;
49
virtual
std::string
get_name
()
const
;
50
51
void
chains
(std::vector<std::string>
const
&
chains
);
52
53
void
score_fxn
(
core::scoring::ScoreFunctionOP
const
&
score_fxn
);
54
55
void
parse_my_tag
(
56
utility::tag::TagPtr
const
tag,
57
protocols::moves::DataMap
&,
58
protocols::filters::Filters_map
const
&,
59
protocols::moves::Movers_map
const
&,
60
core::pose::Pose
const
&
61
);
62
63
void
apply
(
core::pose::Pose
& pose);
64
65
private
:
66
utility::vector1<std::string>
chains_
;
67
core::pose::PoseOP
native_
;
68
core::scoring::ScoreFunctionOP
score_fxn_
;
69
70
void
71
add_scores_to_job
(
72
core::pose::Pose
& pose,
73
protocols::jd2::JobOP
job
74
)
const
;
75
76
void
77
append_ligand_docking_scores
(
78
core::pose::Pose
const
& after,
79
protocols::jd2::JobOP
job
80
)
const
;
81
82
void
83
append_ligand_docking_scores
(
84
core::Size
jump_id,
85
core::pose::Pose
const
& after,
86
protocols::jd2::JobOP
job
87
)
const
;
88
89
};
90
91
}
//namespace ligand_docking
92
}
//namespace protocols
93
94
#endif
Generated on Sat Jun 1 2013 11:55:52 for Rosetta 3.5 by
1.8.4