Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LongRangeTwoBodyEnergy.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/LongRangeTwoBodyEnergy.hh
11 /// @brief Long range two body energy method class declaration
12 /// @author Andrew Leaver-Fay
13 
14 #ifndef INCLUDED_core_scoring_methods_LongRangeTwoBodyEnergy_hh
15 #define INCLUDED_core_scoring_methods_LongRangeTwoBodyEnergy_hh
16 
17 // Unit Headers
19 
20 // Package Headers
23 
24 // Project headers
25 #include <core/pose/Pose.fwd.hh>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace core {
31 namespace scoring {
32 namespace methods {
33 
35 {
36 public:
38 
39 public:
40  /// @brief Constructor with an EnergyMethodCreator to inform the grandparent EnergyMethod
41  /// class which ScoreTypes this EnergyMethod computes.
43 
44  virtual ~LongRangeTwoBodyEnergy();
45 
46  virtual LongRangeEnergyType long_range_type() const = 0;
47 
48  virtual
49  bool
51  pose::Pose const & pose,
52  Size res1,
53  Size res2
54  ) const = 0;
55 
56 };
57 
58 }
59 }
60 }
61 
62 #endif