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
swa
MainChainTorsionSet.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 MainChainTorsionClasses
11
/// @brief a few functions used by several StepWiseAnsatz classes
12
/// @detailed
13
/// @author Rhiju Das
14
15
16
//////////////////////////////////
17
#include <
protocols/swa/MainChainTorsionSet.hh
>
18
19
//////////////////////////////////
20
#include <
core/types.hh
>
21
22
// AUTO-REMOVED #include <core/io/silent/BinaryProteinSilentStruct.hh>
23
// AUTO-REMOVED #include <core/io/silent/SilentFileData.hh>
24
// AUTO-REMOVED #include <core/id/NamedAtomID.hh>
25
// AUTO-REMOVED #include <core/pose/Pose.hh>
26
27
#include <
core/pose/util.hh
>
28
// AUTO-REMOVED #include <core/scoring/rms_util.hh>
29
// AUTO-REMOVED #include <core/scoring/rms_util.tmpl.hh>
30
31
// AUTO-REMOVED #include <numeric/angle.functions.hh>
32
// AUTO-REMOVED #include <numeric/xyz.functions.hh>
33
// AUTO-REMOVED #include <numeric/conversions.hh>
34
35
#include <string>
36
37
#include <
core/id/types.hh
>
38
#include <utility/vector1.hh>
39
#include <utility/io/mpistream.hh>
40
41
//Auto Headers
42
#include <
core/kinematics/Jump.hh
>
43
#include <
core/pose/Pose.fwd.hh
>
44
45
46
47
48
using
core::Real
;
49
using
core::Size
;
50
using
core::pose::Pose
;
51
52
namespace
protocols {
53
namespace
swa {
54
55
MainChainTorsionSet::MainChainTorsionSet
(
core::Real
const
&
phi
,
core::Real
const
&
psi
,
core::Real
const
&
omega
):
56
phi_( phi ),
57
psi_( psi ),
58
omega_( omega )
59
{}
60
61
MainChainTorsionSet::MainChainTorsionSet
(
core::Real
const
&
phi
,
core::Real
const
&
psi
):
62
phi_( phi ),
63
psi_( psi ),
64
omega_( 180.0 )
65
{}
66
67
MainChainTorsionSet::~MainChainTorsionSet
(){}
68
69
core::Real
MainChainTorsionSet::phi
()
const
{
return
phi_
; }
70
core::Real
MainChainTorsionSet::psi
()
const
{
return
psi_
; }
71
core::Real
MainChainTorsionSet::omega
()
const
{
return
omega_
; }
72
73
MainChainTorsionSet
74
MainChainTorsionSet::operator=
(
MainChainTorsionSet
const
& src )
75
{
76
phi_
= src.
phi
();
77
psi_
= src.
psi
();
78
omega_
= src.
omega
();
79
return
(*
this
);
80
}
81
82
}
83
}
Generated on Sat Jun 1 2013 12:18:56 for Rosetta 3.5 by
1.8.4