Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopRefineInnerCycleFactory.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 src/protocols/loops/loop_mover/refine/LoopRefineInnerCycleFactory.hh
11 /// @brief Factory for creating LoopRefineInnerCycle objects
12 /// @author Brian D. Weitzner ( brian.weitzner@gmail.com )
13 
14 
15 #ifndef INCLUDED_protocols_loops_LoopRefineInnerCycle_HH
16 #define INCLUDED_protocols_loops_LoopRefineInnerCycle_HH
17 
18 // Unit headers
20 
21 // Package headers
24 
25 
26 
27 // Project headers
31 
32 // Utility headers
33 #include <utility/vector1.fwd.hh>
34 
35 // C++ Headers
36 #include <map>
37 
38 namespace protocols {
39 namespace loops {
40 namespace loop_mover {
41 namespace refine {
42 
43 // Prefix all entries in this enum with "IC_" (InnerCycle) to avoid confusion with class names
45  // Individual LoopRefineInnerCycles
49 
50  // Pre-made algorithms
53 };
54 
55 /// Create LoopMover Reporters
57 
58 public:
59 
60  // Warning this is not called because of the singleton pattern
62 
64 
65  /// @brief Create a LoopRefineInnerCycle giving it a pointer to the data it needs to function
67  LoopRefineInnerCycleName type_name,
68  LoopMover_Refine_CCDAP loop_mover,
72  ) const;
73 
74 private: // methods
75  // Private constructor - singleton
77  LoopRefineInnerCycleFactory(const LoopRefineInnerCycleFactory & src); // unimplemented
78 
80  operator=( LoopRefineInnerCycleFactory const & ); // unimplemented
81 
83  void setup_known_types();
84 
85 private:
86 
89  // TODO: Add a std::map< std::string, LoopRefineInnerCycleName > to allow for commandline or RosettaScripts based selection.
90  // core/scoring/ScoreTypeManager.cc has an example of setting something like this up
91 
92 };
93 
94 } // namespace refine
95 } // namespace loop_mover
96 } // namespace loops
97 } // namespace protocols
98 
99 #endif // INCLUDED_protocols_loops_LoopRefineInnerCycle_HH