Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FACTSEnergyCreator.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/facts/FACTSEnergyCreator.hh
11 /// @brief Declaration for the class that connects GenBornEnergy with the ScoringManager
12 /// @author Massih Khorvash
13 /// @author Hahnbeom Park
14 
15 #ifndef INCLUDED_core_scoring_methods_FACTSEnergyCreator_HH
16 #define INCLUDED_core_scoring_methods_FACTSEnergyCreator_HH
17 
19 
20 //massih
21 
22 namespace core {
23 namespace scoring {
24 namespace methods {
25 
26 // Undefinded, commenting out to fix PyRosetta build
27 /*
28 class FACTSEnergyCreator : public EnergyMethodCreator
29 {
30 
31 public:
32  /// @brief Instantiate a new GenBornEnergy
33  virtual
34  methods::EnergyMethodOP
35  create_energy_method(
36  methods::EnergyMethodOptions const &
37  ) const;
38 
39  /// @brief Return the set of score types claimed by the EnergyMethod
40  /// this EnergyMethodCreator creates in its create_energy_method() function
41  virtual
42  ScoreTypes
43  score_types_for_method() const;
44 
45 }; */
46 
47 }
48 }
49 }
50 
51 #endif