Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PackStatMover.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 PackStatMover.hh
11 ///
12 /// @brief
13 /// @author Monica Berrondo
14 
15 #ifndef INCLUDED_protocols_analysis_PackStatMover_hh
16 #define INCLUDED_protocols_analysis_PackStatMover_hh
17 
18 
19 #include <core/types.hh>
20 
21 #include <protocols/moves/Mover.hh>
22 
23 #include <core/pose/Pose.fwd.hh>
24 
25 #include <utility/vector1.hh>
26 
28 
29 namespace protocols {
30 namespace analysis {
31 
33 {
34 public:
35 
36  PackStatMover();
37 
38  virtual void apply(
39  core::pose::Pose & pose
40  );
41  virtual std::string get_name() const;
42 
43  // void set_verbose( bool _verbose ) { verbose_ = _verbose; }
44  // bool get_verbose( ) { return verbose_; }
45  //
46  // void set_packstat_pdb( bool _packstat_pdb ) { packstat_pdb_ = _packstat_pdb; }
47  // bool get_packstat_pdb( ) { return packstat_pdb_; }
48  //
49  // void set_include_water( bool _include_water ) { include_water_ = _include_water; }
50  // bool get_include_water( ) { return include_water_; }
51  //
52  // void set_surface_accessibility( bool _surface_accessibility ) { surface_accessibility_ = _surface_accessibility; }
53  // bool get_surface_accessibility( ) { return surface_accessibility_; }
54  //
55  // void set_residue_scores( bool _residue_scores ) { residue_scores_ = _residue_scores; }
56  // bool get_residue_scores( ) { return residue_scores_; }
57  //
58  // void set_cavity_burial_probe_radius( bool _cavity_burial_probe_radius ) { cavity_burial_probe_radius_ = _cavity_burial_probe_radius; }
59  // bool get_cavity_burial_probe_radius( ) { return cavity_burial_probe_radius_; }
60  //
61  // void set_oversample( core::Real _oversample ) { oversample_ = _oversample; }
62  // core::Real get_oversample( ) { return oversample_; }
63 
64 private:
65 
66  /// information about the mode
67  bool verbose_;
74 
75 };
76 
77 } // analysis
78 } // protocols
79 
80 #endif // INCLUDED_protocols_analysis_PackStatMover_hh
81