Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
protocols
jd2
archive
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
21
#include <
protocols/jd2/archive/EvaluatedArchive.hh
>
22
#include <
protocols/jd2/archive/ArchiveManager.fwd.hh
>
23
#include <
protocols/jd2/archive/VarianceStatisticsArchive.fwd.hh
>
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
43
class
VarianceStatisticsArchive
:
public
EvaluatedArchive
{
44
typedef
EvaluatedArchive
Parent
;
45
typedef
utility::vector1< core::io::silent::SilentStructOP >
SilentStructVector
;
46
47
public
:
48
VarianceStatisticsArchive
(
std::string
name
);
49
50
virtual
bool
add_evaluated_structure
(
core::io::silent::SilentStructOP
,
Batch
const
& );
51
52
virtual
void
generate_batch
() {};
53
///@brief overloaded to make input decoys appear the same as decoys coming from batches
54
virtual
void
init_from_decoy_set
(
core::io::silent::SilentFileData
const
& ) {};
55
56
void
set_insertion_prob
(
core::Real
setting ) {
57
insertion_prob_
= setting;
58
}
59
60
protected
:
61
62
private
:
63
core::Real
insertion_prob_
;
64
};
65
66
67
}
68
}
69
}
70
71
#endif
Generated on Sat Jun 1 2013 11:54:35 for Rosetta 3.5 by
1.8.4