Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PcsGridSearchParameter.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  //////////////////////////////////////////////
11  /// @file protocols/scoring/methods/pcs2/PcsGridSearchParameter.hh
12  ///
13  /// @authorsv Christophe Schmitz
14  ///
15  /// @last_modified February 2010
16  ////////////////////////////////////////////////
17 
18 #ifndef INCLUDED_protocols_scoring_methods_pcs2_PcsGridSearchParameter_hh
19 #define INCLUDED_protocols_scoring_methods_pcs2_PcsGridSearchParameter_hh
20 
21 // Unit Headers
22 
23 // Package Headers
24 
25 // Project Headers
26 #include <core/types.hh>
27 
28 // ObjexxFCL Headers
29 
30 // Utility headers
31 #include <utility/vector1.hh>
32 
33 // C++ headers
34 #include <string>
35 
36 namespace protocols{
37 namespace scoring{
38 namespace methods{
39 namespace pcs2{
40 
41 
43 
44 
45 public:
46 
51 
56 
61 
66 
71 
74 
75 public:
76  PcsGridSearchParameter(); //Construct
77 
78  ~PcsGridSearchParameter(); //Destruct
79 
81  operator=(PcsGridSearchParameter const & other);
82 
83  PcsGridSearchParameter(PcsGridSearchParameter const & other); //copy
84 
85  /// @brief Print me
86  friend
87  std::ostream &
88  operator << ( std::ostream& out, const PcsGridSearchParameter &me );
89 
90  /// @brief This is to make sure the grid is correctly set up
91  void
93 
94 };
95 
96 
97 }//namespace pcs2
98 }//namespace methods
99 }//namespace scoring
100 }//namespace protocols
101 
102 #endif