Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_MatchType.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 // CVS information:
4 // $Revision: 1.1.2.1 $
5 // $Date: 2005/11/07 21:05:35 $
6 // $Author: rhiju $
7 // (c) Copyright Rosetta Commons Member Institutions.
8 // (c) This file is part of the Rosetta software suite and is made available under license.
9 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
10 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
11 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
12 
13 #ifndef INCLUDED_protocols_rna_RNA_MatchType_HH
14 #define INCLUDED_protocols_rna_RNA_MatchType_HH
15 
16 // ObjexxFCL Headers
17 // AUTO-REMOVED #include <ObjexxFCL/FArray1D.hh>
18 // AUTO-REMOVED #include <ObjexxFCL/FArray2D.hh>
19 // AUTO-REMOVED #include <ObjexxFCL/FArray3D.hh>
20 
21 // AUTO-REMOVED #include <core/pose/Pose.fwd.hh>
22 #include <core/types.hh>
23 // you cannot #include yourself #include <protocols/rna/RNA_MatchType.hh>
24 // AUTO-REMOVED #include <utility/pointer/ReferenceCount.hh>
25 
26 // C++ Headers
27 // AUTO-REMOVED #include <string>
28 // AUTO-REMOVED #include <map>
29 #include <vector>
30 
31 #include <utility/vector1.hh>
32 
33 
34 
35 
36 /////////////////////////////////////////////////////////////////////////////////////
37 /////////////////////////////////////////////////////////////////////////////////////
38 // Goal: to make a fragment object that can choose fragments
39 // "on the fly" for RNA ab inito folding.
40 //
41 // After reading in a set of torsions from, e.g., the ribosome crystal structure,
42 // should be able to generate fragments of size 1, 2, or 3, with
43 // exact sequence matches, partial Y/R matches, or ignoring sequence.
44 //
45 namespace protocols{
46 namespace rna{
47 
48  enum _RNA_MatchType_ { MATCH_ALL /* 0 */, MATCH_YR /* 1 */, MATCH_EXACT /* 2 */};
49 }
50 }
51 
52 #endif