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