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
simple_moves
oop
OopPuckMover.cc
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/simple_moves/oop/OopPuckMover.cc
11
/// @brief OopPuckMover methods implemented
12
/// @author Kevin Drew, kdrew@nyu.edu
13
14
// Unit Headers
15
#include <
protocols/simple_moves/oop/OopPuckMover.fwd.hh
>
16
#include <
protocols/simple_moves/oop/OopPuckMover.hh
>
17
#include <
protocols/simple_moves/oop/OopMover.hh
>
18
#include <
protocols/simple_moves/oop/OopPatcher.hh
>
19
// Package Headers
20
21
// Project Headers
22
#include <
core/scoring/constraints/ConstraintSet.hh
>
23
#include <
core/scoring/constraints/AtomPairConstraint.hh
>
24
#include <
core/chemical/ChemicalManager.hh
>
25
#include <
core/chemical/ResidueType.hh
>
26
#include <
core/chemical/ResidueTypeSet.hh
>
27
#include <
core/chemical/VariantType.hh
>
28
#include <
core/conformation/Residue.hh
>
29
#include <
core/conformation/Conformation.hh
>
30
#include <
core/conformation/util.hh
>
31
#include <
core/pose/Pose.hh
>
32
#include <
core/id/AtomID.hh
>
33
// Random number generator
34
#include <numeric/random/random.hh>
35
// Utility Headers
36
#include <numeric/xyz.functions.hh>
37
#include <basic/Tracer.hh>
38
#include <basic/basic.hh>
39
#include <
core/types.hh
>
40
41
// C++ Headers
42
43
using
basic::T
;
44
using
basic::Error;
45
using
basic::Warning;
46
47
static
numeric::random::RandomGenerator
RG
(956732);
48
static
basic::Tracer
TR
(
"protocols.simple_moves.oop.OopPuckMover"
);
49
50
51
using namespace
core;
52
using namespace
conformation;
53
using namespace
chemical;
54
using namespace
core::id;
55
56
//kdrew: defining constants
57
static
const
Real
OOP_PUCK_PLUS_PHI
= -131.27;
58
static
const
Real
OOP_PUCK_PLUS_PSI
= -10.38;
59
60
static
const
Real
OOP_PUCK_MINUS_PHI
= -147.05;
61
static
const
Real
OOP_PUCK_MINUS_PSI
= -36.90;
62
63
64
static
const
Real
OOP_D_PUCK_PLUS_PHI
= 146.05;
65
static
const
Real
OOP_D_PUCK_PLUS_PSI
= 7.40;
66
67
static
const
Real
OOP_D_PUCK_MINUS_PHI
= 151.90;
68
static
const
Real
OOP_D_PUCK_MINUS_PSI
= 30.40;
69
70
71
namespace
protocols {
72
namespace
simple_moves {
73
namespace
oop {
74
75
76
OopPuckPlusMover::OopPuckPlusMover(
core::Size
oop_seq_position ):
OopMover
( oop_seq_position,
OOP_PUCK_PLUS_PHI
,
OOP_PUCK_PLUS_PSI
)
77
{
78
OopMover::type
(
"OopPuckPlusMover"
);
79
}
80
81
OopPuckPlusMover::~OopPuckPlusMover
(){}
82
83
std::string
84
OopPuckPlusMover::get_name
()
const
{
85
return
"OopPuckPlusMover"
;
86
}
87
88
OopPuckMinusMover::OopPuckMinusMover
(
core::Size
oop_seq_position ):
OopMover
( oop_seq_position,
OOP_PUCK_MINUS_PHI
,
OOP_PUCK_MINUS_PSI
)
89
{
90
OopMover::type
(
"OopPuckMinusMover"
);
91
}
92
93
OopPuckMinusMover::~OopPuckMinusMover
(){}
94
95
std::string
96
OopPuckMinusMover::get_name
()
const
{
97
return
"OopPuckMinusMover"
;
98
}
99
100
OopDPuckPlusMover::OopDPuckPlusMover
(
core::Size
oop_seq_position ):
OopMover
( oop_seq_position,
OOP_D_PUCK_PLUS_PHI
,
OOP_D_PUCK_PLUS_PSI
)
101
{
102
OopMover::type
(
"OopDPuckPlusMover"
);
103
}
104
105
OopDPuckPlusMover::~OopDPuckPlusMover
(){}
106
107
std::string
108
OopDPuckPlusMover::get_name
()
const
{
109
return
"OopDPuckPlusMover"
;
110
}
111
112
OopDPuckMinusMover::OopDPuckMinusMover
(
core::Size
oop_seq_position ):
OopMover
( oop_seq_position,
OOP_D_PUCK_MINUS_PHI
,
OOP_D_PUCK_MINUS_PSI
)
113
{
114
OopMover::type
(
"OopDPuckMinusMover"
);
115
}
116
117
OopDPuckMinusMover::~OopDPuckMinusMover
(){}
118
119
std::string
120
OopDPuckMinusMover::get_name
()
const
{
121
return
"OopDPuckMinusMover"
;
122
}
123
124
125
}
//oop
126
}
//simple_moves
127
}
//protocols
128
Generated on Sat Jun 1 2013 12:16:27 for Rosetta 3.5 by
1.8.4