Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mp_dock.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 apps/pilot/membrane/mp_dock.cc
11 ///
12 /// @brief RosettaMP Membrane Protein-Protein Docking Protocol
13 /// @details Dock to wproteins in the membrane
14 ///
15 /// @author Julia Koehler Leman (julia.koehler1982@gmail.com)
16 /// @author Rebecca Faye Alford (rfalford12@gmail.com)
17 /// @note Last Updated: 5/18/15
18 
19 // App headers
20 #include <devel/init.hh>
21 
22 // Project headers
23 #include <protocols/docking/membrane/MPDockingMover.hh>
24 
25 // Package headers
26 #include <protocols/jd2/JobDistributor.hh>
27 #include <protocols/jd2/util.hh>
29 #include <basic/Tracer.hh>
30 
31 static basic::Tracer TR( "apps.public.membrane.mp_dock" );
32 
33 int
34 main( int argc, char * argv [] )
35 {
36  try {
37  using namespace protocols::jd2;
38  using namespace protocols::docking::membrane;
39 
40 
41  // initialize options, RNG, and factory-registrators
42  devel::init(argc, argv);
43 
44  MPDockingMoverOP mpdm( new MPDockingMover() );
45  JobDistributor::get_instance()->go(mpdm);
46  }
47 catch ( utility::excn::EXCN_Base const & e ) {
48  std::cout << "caught exception " << e.msg() << std::endl;
49  return -1;
50 }
51 
52  return 0;
53 }
static basic::Tracer TR("apps.public.membrane.mp_dock")
virtual std::string const msg() const
Definition: EXCN_Base.hh:70
void init(int argc, char *argv[])
Command line init() version.
Definition: init.cc:23
common derived classes for thrown exceptions
Tracer IO system.
ocstream cout(std::cout)
Wrapper around std::cout.
Definition: ocstream.hh:287
int main(int argc, char *argv[])
Definition: mp_dock.cc:34
Class for handling user debug/warnings/errors. Use instance of this class instead of 'std::cout' for ...
Definition: Tracer.hh:134