Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ConstAbinitioMoverWeight.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_ConstAbinitioMoverWeight_hh
20 #define INCLUDED_protocols_topology_broker_weights_ConstAbinitioMoverWeight_hh
21 
22 // Unit Headers
24 
25 // Package Headers
26 
27 // Project Headers
28 #include <core/types.hh>
29 
30 //#include <core/kinematics/MoveMap.fwd.hh>
31 
32 // ObjexxFCL Headers
33 
34 // Utility headers
35 
36 #include <utility/pointer/ReferenceCount.hh>
37 
38 //#include <basic/options/option_macros.hh>
39 
40 //// C++ headers
41 //#include <fstream>
42 
43 
44 // option key includes
45 
46 
47 namespace protocols {
48 namespace topology_broker {
49 namespace weights {
50 
51 
53 public:
55  virtual core::Real weight( core::Size /* stageID */, core::Real /* progress */ /* progress within stage */ ) const {
56  return weight_;
57  }
58 protected:
60 private:
62 }; //class ConstAbinitioMoverWeight
63 
64 // Types
67 
70 
71 }
72 }
73 }
74 
75 #endif