Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SecMatchEvaluatorFactory.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 src/protocols/match/downstream/SecMatchEvaluatorFactory.hh
11 /// @brief
12 /// @author Kui Chan (kuichan@uw.edu), oct 09
13 
14 
15 #ifndef INCLUDED_protocols_match_downstream_SecMatchEvaluatorFactory_hh
16 #define INCLUDED_protocols_match_downstream_SecMatchEvaluatorFactory_hh
17 
18 // Unit headers
21 
22 // Project headers
23 #include <core/pose/Pose.fwd.hh>
24 
25 // Utility headers
26 #include <utility/vector1.fwd.hh>
27 #include <core/types.hh>
28 
29 // C++ headers
30 //#include <list>
31 // AUTO-REMOVED #include <string> // REQUIRED FOR WINDOWS
32 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols{
37 namespace match{
38 namespace downstream{
39 
40 /// @brief a collection of functions making a single score_function
42 {
43 public:
44  typedef core::Size Size;
45  typedef core::Real Real;
46 
47 public:
48 
49  static
53  utility::vector1< core::Size > const & downstream_inds,
54  utility::vector1< core::Size > const & upstream_inds,
55  std::string SecMatchStr,
56  core::pose::Pose const & upstream_pose
57  );
58 
59 
60 };
61 
62 
63 } // namespace downstream
64 } // namespace match
65 } // namespace protocols
66 
67 #endif