Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AtomRadiusMap.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 core/scoring/packstat/AtomRadiusMap.hh
11 ///
12 /// @brief
13 /// @author
14 
15 
16 #ifndef INCLUDED_core_scoring_packstat_AtomRadiusMap_hh
17 #define INCLUDED_core_scoring_packstat_AtomRadiusMap_hh
18 
21 
22 
23 #include <map>
24 #include <string>
25 
26 namespace core {
27 namespace scoring {
28 namespace packstat {
29 
30 
31  /// @brief
33 {
34 
35  // friend std::istream & operator>> ( std::istream & in , AtomRadiusMap & pdb );
36  // friend std::ostream & operator<< ( std::ostream & out, AtomRadiusMap const & pdb );
37 
38 public: // Creation
39 
40  AtomRadiusMap( int include_water = -1 ); // -1 (default) means read from global options
42 
44 
45 private:
46 
47  std::map< std::pair<std::string const,std::string const>, PackstatReal > type_map_;
48 
49 }; // AtomRadiusMap
50 
51 
52 } // namespace packstat
53 } // namespace scoring
54 } // namespace core
55 
56 
57 #endif // INCLUDED_core_scoring_packstat_AtomRadiusMap_HH