Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LargeFragWeight.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 SmallFragWeights -- exclusive or non-exclusively markedup dofs like BackboneClaim, IntraResClaim, JumpClaim
15 /// generates FoldTree, MoveMap, and collects samplers provided by LargeFragWeights
16 /// @author Oliver Lange
17 
18 
19 #ifndef INCLUDED_protocols_topology_broker_weights_LargeFragWeight_hh
20 #define INCLUDED_protocols_topology_broker_weights_LargeFragWeight_hh
21 
22 // Unit Headers
24 
25 // Package Headers
27 
28 // Project Headers
29 #include <core/types.hh>
30 
31 // Utility headers
32 #include <utility/pointer/ReferenceCount.hh>
33 
34 
35 namespace protocols {
36 namespace topology_broker {
37 namespace weights {
38 
39 
41 public:
43  virtual core::Real weight( core::Size stageID, core::Real /*progress*/ /* progress within stage */ ) const {
44  if ( stageID < abinitio::STAGE_4 ) return weight_;
45  return 0.0;
46  };
47 private:
49 }; //class LargeFragWeight
50 
51 // Types
54 
57 
58 }
59 }
60 }
61 
62 #endif