Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymDockBaseProtocol.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 protocols/symmetric_docking/SymDataBaseProtocol.cc
10 ///
11 /// @brief
12 /// @author Ingemar Andre
13 
14 
17 // AUTO-REMOVED #include <core/conformation/symmetry/SymmData.hh>
18 
19 // AUTO-REMOVED #include <basic/options/option.hh>
20 
21 #include <basic/Tracer.hh>
22 
23 // AUTO-REMOVED #include <numeric/random/random.hh>
24 
25 #include <utility/vector1.hh>
26 #include <basic/options/keys/OptionKeys.hh>
27 
28 
29 namespace protocols {
30 namespace symmetric_docking {
31 
32 static basic::Tracer TR("protocols.symmetric_docking.SymDockBaseProtocol");
33 //static numeric::random::RandomGenerator my_RG(85000); // <- Magic number, do not change it!!! Need to find out wgat to use here!!!!!!
34 
36  Mover()
37 {
38  Mover::type( "SymDockBaseProtocol" );
39 
40  using namespace basic::options;
41  using namespace core::scoring;
42 // if ( option[ OptionKeys::docking::symmetry::symm_definition ].user() ) {
43 // symm_definition_file_ = option[ OptionKeys::docking::symmetry::symm_definition ];
44 // } else {
45 // utility_exit_with_message("Need to give symmetry definition file...") ;
46 // }
47  std::string symm_definition_file_ = "symm_def5.dat";
48  // Set up scoring functions
49 // symmetry::SymmetricScoreFunction scorefxn_sym_lowres ( ScoreFunctionFactory::create_score_function( "interchain_cen" ) );
50 // symmetry::SymmetricScoreFunction scorefxn_sym_highres ( core::scoring::STANDARD_WTS, core::scoring::DOCK_PATCH );
51 // scorefxn_lowres_ = new symmetry::SymmetricScoreFunction( scorefxn_sym_lowres );
52 // scorefxn_hires_ = new symmetry::SymmetricScoreFunction( scorefxn_sym_highres );
55 
56 }
57 
59 
62  return "SymDockBaseProtocol";
63 }
64 
65 } // symmetric_docking
66 } // protocols