Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ElectronDensityOptions.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/electron_density/ElectronDensityOptions.hh
11 /// @brief Options for constructing an electron density map
12 /// @author Matthew O'Meara (mattjomeara@gmail.com)
13 
14 #ifndef INCLUDED_core_scoring_electron_density_ElectronDensityOptions_hh
15 #define INCLUDED_core_scoring_electron_density_ElectronDensityOptions_hh
16 
17 
18 // Unit Headers
20 #include <basic/resource_manager/ResourceOptions.hh>
21 
22 // Platform Headers
23 #include <core/types.hh>
24 
25 // Utility Headers
26 #include <utility/pointer/ReferenceCount.hh>
27 #include <utility/tag/Tag.fwd.hh>
28 
29 // C++ Headers
30 #include <string>
31 
32 namespace core {
33 namespace scoring {
34 namespace electron_density {
35 
36 class ElectronDensityOptions : public basic::resource_manager::ResourceOptions
37 {
38 public:
40 
42  std::string const & name);
43 
45  std::string const & name,
46  Real mapreso,
47  Real grid_spacing);
48 
50 
52  ElectronDensityOptions const & src);
53 
54  Real
55  get_mapreso() const;
56 
57  void
58  set_mapreso( Real mapreso );
59 
60  Real
61  get_grid_spacing() const;
62 
63  void
64  set_grid_spacing( Real grid_spacing);
65 
66 public: // The ResourceOptions public interface
67  virtual
68  void
71  );
72 
73  /// @brief The class name for a particular ResourceOptions instance.
74  /// This function allows for better error message delivery
75  virtual
77  type() const { return "ElectronDensityOptions"; }
78 
79 private:
82 
83 };
84 
85 
86 } // namespace
87 } // namespace
88 } // namespace
89 
90 
91 #endif