Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AbinitioMoverWeight.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 TopologyBroker
11 /// @brief top-class (Organizer) of the TopologyBroker mechanism
12 /// @detailed responsibilities:
13 /// maintains list of ToplogyClaimers
14 /// maintains AbinitioMoverWeights -- exclusive or non-exclusively markedup dofs like BackboneClaim, IntraResClaim, JumpClaim
15 /// generates FoldTree, MoveMap, and collects samplers provided by AbinitioMoverWeights
16 /// @author Oliver Lange
17 
18 
19 #ifndef INCLUDED_protocols_topology_broker_weights_AbinitioMoverWeight_hh
20 #define INCLUDED_protocols_topology_broker_weights_AbinitioMoverWeight_hh
21 
22 // Unit Headers
23 
24 // Package Headers
25 
26 // Project Headers
27 #include <core/types.hh>
28 
29 //#include <core/kinematics/MoveMap.fwd.hh>
30 
31 // ObjexxFCL Headers
32 
33 // Utility headers
34 #include <utility/pointer/ReferenceCount.hh>
35 #include <utility/pointer/owning_ptr.hh>
36 // AUTO-REMOVED #include <utility/pointer/access_ptr.hh>
37 
38 #include <utility/pointer/access_ptr.fwd.hh>
39 
40 
41 //#include <basic/options/option_macros.hh>
42 
43 //// C++ headers
44 //#include <fstream>
45 
46 
47 // option key includes
48 
49 
50 namespace protocols {
51 namespace topology_broker {
52 namespace weights {
53 
55 public:
56  virtual ~AbinitioMoverWeight() {};
57  virtual core::Real weight( core::Size stageID, core::Real progress /* progress within stage */ ) const = 0;
58 }; //class AbinitioMoverWeight
59 
60 // Types
63 
66 
67 
68 }
69 }
70 }
71 #endif