Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PDDFEnergy.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/protocols/scoring/methods/saxs/PDDFEnergy.hh
11 /// @brief "Energy" based on a similarity of theoretical PDDF (pairwise distance distribution function)
12 /// @author Dominik Gront (dgront@chem.uw.edu.pl)
13 
14 
15 #ifndef INCLUDED_protocols_scoring_methods_saxs_PDDFEnergy_hh
16 #define INCLUDED_protocols_scoring_methods_saxs_PDDFEnergy_hh
17 
18 // Package headers
20 // AUTO-REMOVED #include <core/scoring/saxs/FormFactorManager.hh>
21 // AUTO-REMOVED #include <core/scoring/saxs/FormFactor.hh>
22 // AUTO-REMOVED #include <protocols/scoring/methods/saxs/PDDFEnergyCreator.hh>
23 
24 // AUTO-REMOVED #include <core/scoring/EnergyMap.hh>
26 // AUTO-REMOVED #include <core/scoring/methods/EnergyMethodOptions.hh>
27 
30 
31 // Project headers
32 #include <core/pose/Pose.fwd.hh>
33 
36 #include <utility/vector1.hh>
37 
38 
39 namespace protocols {
40 namespace scoring {
41 namespace methods {
42 namespace saxs {
43 
44 
46 public:
47 
48  PDDFEnergy();
49 
51 
52  virtual ~PDDFEnergy() {}
53 
54  virtual core::scoring::methods::EnergyMethodOP clone() const { return new PDDFEnergy(); }
55 
57 
58  virtual void indicate_required_context_graphs(utility::vector1< bool > & /*context_graphs_required*/
59  ) const {}
60 
62  return new PDDFEnergy();
63  }
64 
66  return pose_pddf_;
67  }
68 
70  return d_;
71  }
72 
78 
80 
81 private:
87 
98 
99  void read_pddf(std::string);
100 virtual
101 core::Size version() const;
102 };
103 
104 
105 }
106 }
107 }
108 }
109 
110 #endif