Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FlxbbDesign_main.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 protocols/flxbb/FlxbbDesign_main.cc
11 /// @brief
12 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13 
14 // Unit Headers
17 
18 // Project headers
19 #include <protocols/moves/Mover.hh>
20 
23 
25 #include <basic/options/option.hh>
26 // AUTO-REMOVED #include <basic/options/util.hh>
28 // AUTO-REMOVED #include <protocols/flxbb/DesignTask.hh>
29 // option key includes
30 // AUTO-REMOVED #include <basic/options/keys/flxbb.OptionKeys.gen.hh>
31 #include <basic/options/keys/in.OptionKeys.gen.hh>
32 
33 #include <utility/vector0.hh>
34 #include <utility/vector1.hh>
35 
36 
37 using namespace basic::options;
38 using namespace basic::options::OptionKeys;
39 
40 using namespace core;
41 
42 namespace protocols {
43 namespace flxbb{
44 
46 
47  using namespace protocols::jobdist;
48  using namespace protocols::moves;
50 
52  scoring::ScoreFunctionOP scorefxn_design = scorefxn;
53  scoring::ScoreFunctionOP scorefxn_relax = scorefxn;
54 
55  if( option[ in::file::fullatom ]() ) {
57  } else{
59  }
60 
61  MoverOP protocol;
62  protocol = new FlxbbDesign( scorefxn_design, scorefxn_relax );
63  JobDistributor::get_instance()->go( protocol );
64 
65  }
66 
67 } // namespace flxbb
68 } // namespace protocols