Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VarianceStatisticsArchive.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 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 ///
10 /// @author Oliver Lange
11 /// Archive class to collect structures such that variances of scores can be computed to determine normalized weights
12 
13 
14 #ifndef INCLUDED_protocols_jd2_archive_VarianceStatisticsArchive_hh
15 #define INCLUDED_protocols_jd2_archive_VarianceStatisticsArchive_hh
16 
17 // Unit Headers
18 //#include <protocols/abinitio/IterativeAbrelax.fwd.hh>
19 
20 // Package Headers
24 // Project Headers
25 #include <core/types.hh>
26 #include <core/pose/Pose.fwd.hh>
27 
28 // Utility headers
29 #include <utility/vector1.hh>
30 
31 // Third-party Headers
32 
33 //// C++ headers
34 
35 #include <string>
36 
37 
38 
39 namespace protocols {
40 namespace jd2 {
41 namespace archive {
42 
46 
47 public:
49 
51 
52  virtual void generate_batch() {};
53  ///@brief overloaded to make input decoys appear the same as decoys coming from batches
55 
56  void set_insertion_prob( core::Real setting ) {
57  insertion_prob_ = setting;
58  }
59 
60 protected:
61 
62 private:
64 };
65 
66 
67 }
68 }
69 }
70 
71 #endif