Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
util.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file core/scoring/methods/util.hh
12 /// @brief utility methods for scoring.
13 /// @author James Thompson
14 
15 #ifndef INCLUDED_core_scoring_methods_util_hh
16 #define INCLUDED_core_scoring_methods_util_hh
17 
18 #include <core/types.hh>
19 #include <core/id/AtomID.fwd.hh>
21 
22 namespace core {
23 namespace scoring {
24 namespace methods {
25 
27  char ss
28 );
29 
31  conformation::Residue const & rsd1,
32  conformation::Residue const & rsd2,
33  core::Real const interaction_cutoff
34 );
35 
36 bool atoms_interact(
37  conformation::Residue const & rsd1,
38  conformation::Residue const & rsd2,
39  core::id::AtomID const & id1,
40  core::id::AtomID const & id2,
41  core::Real const interaction_cutoff
42 );
43 
44 } // namespace methods
45 } // namespace scoring
46 } // namespace core
47 
48 #endif