Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DistanceChainbreakEnergy.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/scoring/methods/EtableEnergy.hh
11 /// @brief Etable energy method class declaration
12 /// @author Phil Bradley
13 /// @author Andrew Leaver-Fay
14 
15 #ifndef INCLUDED_core_scoring_methods_DistanceChainbreakEnergy_hh
16 #define INCLUDED_core_scoring_methods_DistanceChainbreakEnergy_hh
17 
18 // Unit headers
20 
21 // Package headers
25 
26 // Project headers
27 #include <core/pose/Pose.fwd.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 
33 //#include <ObjexxFCL/FArray3D.hh>
34 
35 namespace core {
36 namespace scoring {
37 namespace methods {
38 
39 /// @brief DistanceChainbreakEnergy class iterates across all residues in finalize()
40 /// and determines the penalty between residues i and i+1 by how far apart
41 /// their N and C atom are
43 public:
45 
46 public:
47 
49 
50  /// clone
51  virtual
53  clone() const
54  {
55  return new DistanceChainbreakEnergy;
56  }
57 
58  /// called at the end of energy evaluation
59  virtual
60  void
62  pose::Pose & pose,
63  ScoreFunction const &,
64  EnergyMap & totals
65  ) const;
66 
67  virtual
68  void
70 virtual
71 core::Size version() const;
72 
73 
74 };
75 
76 } // methods
77 } // scoring
78 } // core
79 
80 
81 #endif