LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
art.cc
Go to the documentation of this file.
3 
5 
6 #include <iostream>
7 
8 int main( int argc, char* argv[] ) {
9  int result = artapp(argc,argv);
10  // Make sure the message logger is shut down and any backlog cleared
11  // so our message really is the last one put out.
13  // End message.
14  if (result == art::detail::info_success()) {
15  return 0;
16  }
17  std::cout
18  << "Art has completed and will exit with status "
19  << result
20  << "."
21  << std::endl;
22  return result;
23 }
24 
25 // Local Variables:
26 // mode: c++
27 // End:
void EndMessageFacility()
int main(int argc, char *argv[])
Definition: art.cc:8
int artapp(int argc, char *argv[])
Definition: artapp.cc:23
constexpr int info_success()
Definition: info_success.h:9