Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ChemicalShiftEvaluator.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 ClashEvaluator.hh
11 /// @brief
12 /// @detailed
13 ///
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 
20 #ifndef INCLUDED_protocols_sparta_ChemicalShiftEvaluator_hh
21 #define INCLUDED_protocols_sparta_ChemicalShiftEvaluator_hh
22 
23 
24 // Unit Headers
25 
26 // Package Headers
27 //#include <protocols/evaluation/ExternalEvaluator.hh>
29 
30 // Project Headers
31 #include <core/pose/Pose.fwd.hh>
32 
34 
35 // ObjexxFCL Headers
36 
37 // Utility headers
38 #include <utility/pointer/ReferenceCount.hh>
39 
40 #include <utility/vector0.hh>
41 #include <utility/vector1.hh>
42 
43 
44 
45 //// C++ headers
46 
47 namespace protocols {
48 namespace sparta {
49 
51 public:
53  virtual core::Real apply( core::pose::Pose& pose ) const;
54  virtual bool applicable( core::pose::Pose const&pose ) const;
55 private:
56  mutable sparta::Sparta sparta_; //since this class is far from const-correct..
57 };
58 
59 // class ChemicalShiftEvaluator : public ExternalEvaluator {
60 // public:
61 // ChemicalShiftEvaluator( std::string tag, std::string cst_file );
62 // // virtual core::Real apply( core::pose::Pose& pose ) const;
63 // virtual bool applicable( core::pose::Pose const&pose ) const;
64 // private:
65 
66 // };
67 
68 }
69 }
70 
71 #endif