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
symmetric_docking
SymDockBaseProtocol.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
// This file is part of the Rosetta software suite and is made available under license.
5
// The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6
// (C) 199x-2009 Rosetta Commons participating institutions and developers.
7
// For more information, see http://www.rosettacommons.org/.
8
9
/// @file protocols/symmetric_docking/SymDockBaseProtocol.hh
10
///
11
/// @brief
12
/// @author Ingemar Andre
13
14
15
#ifndef INCLUDED_protocols_symmetric_docking_SymDockBaseProtocol_hh
16
#define INCLUDED_protocols_symmetric_docking_SymDockBaseProtocol_hh
17
18
#include <
core/types.hh
>
19
#include <
protocols/moves/Mover.hh
>
20
// AUTO-REMOVED #include <core/scoring/symmetry/SymmetricScoreFunction.hh>
21
// AUTO-REMOVED #include <core/conformation/symmetry/SymmData.fwd.hh>
22
#include <utility/pointer/ReferenceCount.hh>
23
24
#include <
core/scoring/ScoreFunction.hh
>
25
#include <utility/exit.hh>
26
#include <utility/vector1.hh>
27
28
29
namespace
protocols {
30
namespace
symmetric_docking {
31
32
class
SymDockBaseProtocol
:
public
protocols::moves::Mover
33
{
34
public
:
35
36
SymDockBaseProtocol
();
37
38
virtual
~SymDockBaseProtocol
();
39
40
core::scoring::ScoreFunctionOP
get_lowres_scorefxn
() {
return
scorefxn_lowres_
; }
41
core::scoring::ScoreFunctionOP
get_highres_scorefxn
() {
return
scorefxn_hires_
; }
42
43
virtual
void
apply
(
core::pose::Pose
&
/*pose*/
) { utility_exit_with_message(
"Not intended to actually be used!"
); }
44
virtual
std::string
get_name
()
const
;
45
46
protected
:
47
48
core::scoring::ScoreFunctionOP
scorefxn_lowres_
,
scorefxn_hires_
;
49
std::string
symm_definition_file_
;
50
51
};
52
53
}
// symmetric_docking
54
}
// protocols
55
#endif // INCLUDED_protocols_symmetric_docking_SymDockBaseProtocol_HH
Generated on Sat Jun 1 2013 12:20:23 for Rosetta 3.5 by
1.8.4