Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
symE.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/symE/symE.hh
11 /// @brief Header declarations for class symE
12 /// @author Sam DeLuca (samuel.l.deluca@vanderbilt.edu)
13 
14 #ifndef INCLUDED_core_scoring_sym_e_symE_hh
15 #define INCLUDED_core_scoring_sym_e_symE_hh
18 // AUTO-REMOVED #include <core/scoring/methods/EnergyMethodOptions.fwd.hh>
19 #include <core/pose/Pose.fwd.hh>
20 
21 #include <utility/vector1.hh>
22 
23 
24 namespace core {
25 namespace scoring {
26 namespace sym_e {
27 
29 public:
31 
32 public:
33  //symE( methods::EnergyMethodOptions const & options );
34 
35  symEnergy();
36 
37  virtual methods::EnergyMethodOP clone() const;
38 
39  virtual void setup_for_scoring( pose::Pose & pose, ScoreFunction const & ) const;
40 
41  virtual void setup_for_packing(pose::Pose & pose, utility::vector1< bool > const &, utility::vector1< bool > const & ) const;
42 
43  virtual void indicate_required_context_graphs( utility::vector1< bool > & context_graphs_required ) const;
44 
45  virtual bool defines_intrares_energy( EnergyMap const & weights ) const;
46 
47  virtual void eval_intrares_energy(conformation::Residue const & rsd, pose::Pose const & pose, ScoreFunction const & sfxn, EnergyMap & emap) const;
48 
50 
51  virtual bool defines_residue_pair_energy(const core::pose::Pose& pose, platform::Size res1, platform::Size res2) const;
52 
53  virtual void residue_pair_energy(
54  conformation::Residue const & rsd1,
55  conformation::Residue const & rsd2,
56  pose::Pose const & pose,
57  ScoreFunction const &,
58  EnergyMap & emap
59  ) const;
60 virtual
61 core::Size version() const;
62 };
63 
64 
65 } //symE
66 } //scoring
67 } //core
68 
69 #endif /*symE_H_ */
70