Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StructureIndependentPeakCalibrator.cc
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 FragmentSampler.cc
11 /// @brief ab-initio fragment assembly protocol for proteins
12 /// @detailed
13 /// Contains currently: Classic Abinitio
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 // Unit Headers
20 
21 // Package Headers
22 // AUTO-REMOVED #include <protocols/noesy_assign/CrossPeakList.hh>
23 
24 // Project Headers
25 
26 // Utility headers
27 #include <basic/Tracer.hh>
28 
29 //// C++ headers
30 // AUTO-REMOVED #include <cmath>
31 
32 #include <utility/vector1.hh>
33 
34 
35 static basic::Tracer tr("protocols.noesy_assign.crosspeaks");
36 
37 using core::Real;
38 using namespace core;
39 using namespace basic;
40 //using namespace basic::options;
41 //using namespace basic::options::OptionKeys;
42 
43 namespace protocols {
44 namespace noesy_assign {
45 
46 void StructureIndependentPeakCalibrator::collect_upperbound_statistics( core::Size peak, TypeCumulator const& types ) {
47  collect_target_statistics( peaks()[ peak ]->distance_bound(), types);
48 }
49 
50 }
51 }