Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PointGraph.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/conformation/PointGraph.hh
11 /// @brief Graph for detecting neighbors; vertices store points, edges store square distances
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 /// @author Sam DeLuca
14 /// @author Doug Renfrew
15 
16 #ifndef INCLUDED_core_conformation_PointGraph_hh
17 #define INCLUDED_core_conformation_PointGraph_hh
18 
19 #ifdef PYROSETTA
21  #include <utility/vector1.hh>
22 #endif
23 
24 // Unit Headers
26 
27 // Package Headers
28 //because PointGraph is a typedef, not a 'real class', this header needs to include other full headers for downstream compilation. Think of it as PointGraph inheriting from these two.
29 // AUTO-REMOVED #include <core/conformation/PointGraphData.hh>
30 // AUTO-REMOVED #include <core/graph/UpperEdgeGraph.hh>
31 
32 // Project Headers
34 
35 #include <core/types.hh>
36 
37 
38 namespace core {
39 namespace conformation {
40 
41 void
43  Conformation const & conformation,
44  PointGraph & pg
45 );
46 
47 #ifdef PYROSETTA
48  class PointGraphPy : public PointGraph {};
49 
50  /*template <class T1, class T2 >
51  class UpperEdgeGraphPy : public graph::UpperEdgeGraph < T1, T2 > { };
52 
53  typedef UpperEdgeGraphPy< PointGraphVertexData, PointGraphEdgeData > PointGraph_;
54 
55  class PointGraphPy_ : public PointGraph_ {}; */
56 
57  //typedef UpperEdgeGraphPy< PointGraphVertexData, PointGraphEdgeData > PointGraph_;
58 
59  //class PointGraphPy : public UpperEdgeGraphPy< PointGraphVertexData, PointGraphEdgeData > {}; // for PyRosetta
60 #endif
61 
62 
63 } // namespace conformation
64 } // namespace core
65 
66 #endif