Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MonteCarloLoader.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 protocols/jd2/parser/MonteCarloLoader.hh
11 /// @brief Declartion of the XML parser's MonteCarloLoader class for adding named ScoreFunctions to the DataMap
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_protocols_jd2_parser_MonteCarloLoader_hh
15 #define INCLUDED_protocols_jd2_parser_MonteCarloLoader_hh
16 
17 // Package Headers
19 
20 // Project Headers
21 #include <core/pose/Pose.fwd.hh>
22 
23 // Utility Headers
24 #include <utility/tag/Tag.fwd.hh>
25 #include <utility/pointer/ReferenceCount.hh>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace protocols {
31 namespace jd2 {
32 namespace parser {
33 
34 /// @brief The MonteCarloLoader will create named MonteCarlo objects and load them into the DataMap
36 {
37 public:
39  virtual ~MonteCarloLoader();
40 
41  /// @brief The MonteCarloLoader will create named MonteCarlo objects and load them into the DataMap
42  virtual
43  void load_data(
44  core::pose::Pose const & pose,
45  utility::tag::TagPtr const tag,
46  moves::DataMap & data
47  ) const;
48 
49 };
50 
51 } //namespace parser
52 } //namespace jd2
53 } //namespace protocols
54 
55 #endif