Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
core
scoring
etable
count_pair
types.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/etable/count_pair/CountPairFunction.hh
11
/// @brief Count pair base class interface
12
/// @author Andrew Leaver-Fay (leaverfa@email.unc.edu)
13
14
15
#ifndef INCLUDED_core_scoring_etable_count_pair_types_hh
16
#define INCLUDED_core_scoring_etable_count_pair_types_hh
17
18
#include <
core/types.hh
>
19
20
namespace
core {
21
namespace
scoring {
22
namespace
etable {
23
namespace
count_pair {
24
25
enum
CPCrossoverBehavior
{
26
CP_CROSSOVER_3
= 1,
27
CP_CROSSOVER_4
,
28
nCPCrossoverBehaviors
=
CP_CROSSOVER_4
//keep this guy last
29
};
30
31
enum
CPResidueConnectionType
{
32
CP_NO_BONDS
= 1,
33
CP_ONE_BOND
,
34
CP_MULTIPLE_BONDS_OR_PSEUDOBONDS
,
35
nCPResidueConnectionTypes
=
CP_MULTIPLE_BONDS_OR_PSEUDOBONDS
// keep this guy last
36
};
37
38
// if an atom is separated by at least 5 bonds from any other atom, it is
39
// effectively at an infinite separation
40
Size
const
INFINITE_SEPARATION
( 5 );
41
42
}
43
}
44
}
45
}
46
47
#endif
Generated on Sat Jun 1 2013 11:31:40 for Rosetta 3.5 by
1.8.4