Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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
19 // Package Headers
20 
21 // Project Headers
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 
82 
85  return "OopPuckPlusMover";
86 }
87 
89 {
90  OopMover::type( "OopPuckMinusMover" );
91 }
92 
94 
97  return "OopPuckMinusMover";
98 }
99 
101 {
102  OopMover::type( "OopDPuckPlusMover" );
103 }
104 
106 
109  return "OopDPuckPlusMover";
110 }
111 
113 {
114  OopMover::type( "OopDPuckMinusMover" );
115 }
116 
118 
121  return "OopDPuckMinusMover";
122 }
123 
124 
125 }//oop
126 }//simple_moves
127 }//protocols
128