Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
IterativeCentroid.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 // 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 /// @file IterativeAbrelax
10 /// @brief iterative protocol starting with abinitio and getting progressively more concerned with full-atom relaxed structures
11 /// @detailed
12 ///
13 ///
14 /// @author Oliver Lange
15 
16 
17 // Unit Headers
19 // AUTO-REMOVED #include <protocols/jd2/archive/ArchiveManager.hh>
20 
21 // Package Headers
22 
23 // Project Headers
24 #include <core/types.hh>
25 // AUTO-REMOVED #include <core/pose/Pose.hh>
26 
27 // AUTO-REMOVED #include <core/io/silent/SilentStruct.hh>
28 // AUTO-REMOVED #include <core/io/silent/SilentFileData.hh>
29 
30 // AUTO-REMOVED #include <core/fragment/ConstantLengthFragSet.hh>
31 // AUTO-REMOVED #include <core/fragment/FragmentIO.hh>
32 // AUTO-REMOVED #include <core/fragment/util.hh>
33 
34 // AUTO-REMOVED #include <protocols/toolbox/DecoySetEvaluation.hh>
36 // AUTO-REMOVED #include <core/scoring/ScoreFunctionFactory.hh>
37 
38 // #include <core/scoring/ScoreType.hh>
39 // //#include <core/kinematics/MoveMap.hh>
40 // #include <core/types.hh>
41 // #include <core/scoring/rms_util.hh> //for MonteCarloExceptionConverge
42 // //#include <core/pack/task/PackerTask.fwd.hh>
43 // #include <core/scoring/constraints/ConstraintSet.hh>
44 // //only needed because of temporary output_debug_structure ...
45 
46 // #include <core/io/silent/SilentStructFactory.hh>
47 // #include <basic/options/keys/out.OptionKeys.gen.hh>
48 // #include <protocols/jd2/util.hh>
49 // //#include <protocols/moves/Mover.hh>
50 // //#include <protocols/moves/MoverContainer.hh>
51 // #include <protocols/moves/TrialMover.hh>
52 // #include <protocols/moves/RepeatMover.hh>
53 // //#include <protocols/moves/WhileMover.hh>
54 // #include <protocols/checkpoint/Checkpoint.hh>
55 
56 // ObjexxFCL Headers
57 // //#include <ObjexxFCL/string.functions.hh>
58 
59 // Utility headers
60 // AUTO-REMOVED #include <utility/io/izstream.hh>
61 // AUTO-REMOVED #include <utility/io/ozstream.hh>
62 // AUTO-REMOVED #include <utility/file/FileName.hh>
63 
64 // #include <utility/exit.hh>
65 // #include <utility/vector1.fwd.hh>
66 // #include <utility/pointer/ReferenceCount.hh>
67 // #include <utility/file/file_sys_util.hh>
68 // #include <numeric/numeric.functions.hh>
69 // #include <basic/prof.hh>
70 #include <basic/Tracer.hh>
71 // #include <basic/options/option.hh>
72 
73 // Option Headers
74 // AUTO-REMOVED #include <basic/options/keys/abinitio.OptionKeys.gen.hh>
75 // #include <basic/options/keys/run.OptionKeys.gen.hh>
76 // //#include <basic/options/keys/templates.OptionKeys.gen.hh>
77 
78 //// C++ headers
79 // AUTO-REMOVED #include <cstdlib>
80 #include <string>
81 // AUTO-REMOVED #include <ctime>
82 // AUTO-REMOVED #include <iterator>
83 
84 // Utility headers
85 // AUTO-REMOVED #include <basic/options/option_macros.hh>
86 
87 #include <utility/vector1.hh>
88 #include <basic/options/keys/OptionKeys.hh>
89 
90 
91 static basic::Tracer tr("protocols.iterative");
92 
93 using core::Real;
94 using namespace core;
95 using namespace basic;
96 using namespace basic::options;
97 using namespace basic::options::OptionKeys;
98 
99 
100 namespace protocols {
101 namespace abinitio {
102 using namespace jd2::archive;
103 
104 void IterativeCentroid::gen_diversity_pool( jd2::archive::Batch& batch, bool fullatom ) {
105  if ( fullatom ) fullatom_pool_ptr_->gen_diversity_pool( batch, fullatom );
106  else Parent::gen_diversity_pool( batch, fullatom );
107 }
108 
109 void IterativeCentroid::update_noesy_filter_files(
110  std::string const& current,
111  bool fullatom
112 ) {
113  fullatom_pool_ptr_->update_noesy_filter_files( current, fullatom );
114  Parent::update_noesy_filter_files( current, fullatom );
115 }
116 
117 } //abinitio
118 } //protocols