Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
extractEvt.cpp File Reference
#include "merge/extractEvt.C"
#include <cstdlib>
#include <stdexcept>
Include dependency graph for extractEvt.cpp:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 16 of file extractEvt.cpp.

16  {
17  string input;
18  string output;
19  int evt_num = -1;
20  for ( int i = 1; i < argc; ++i ) {
21  if ( *argv[i] == '-' ) {
22  switch ( ::toupper( *( argv[i] + 1 ) ) ) {
23  case 'E':
24  if ( 1 != ::sscanf( argv[i + 1], "%d", &evt_num ) ) {
25  ::printf( "\nERROR: No valid event identifier given.\n\n" );
26  return usage();
27  }
28  ++i;
29  break;
30  case 'O':
31  if ( i + 1 < argc ) output = argv[i + 1];
32  ++i;
33  break;
34  case 'I':
35  if ( i + 1 < argc ) input = argv[i + 1];
36  ++i;
37  break;
38  default:
39  return usage();
40  }
41  }
42  }
43  if ( input.empty() ) {
44  ::printf( "\nERROR: No input file(s) supplied\n\n" );
45  return usage();
46  } else if ( output.empty() ) {
47  ::printf( "\nERROR: No output file supplied.\n\n" );
48  return usage();
49  } else if ( evt_num < 0 ) {
50  ::printf( "\nERROR: No valid event identifier given.\n\n" );
51  return usage();
52  }
53  gROOT->SetBatch( kTRUE );
54  try {
55  if ( extract_event( input.c_str(), output.c_str(), evt_num ) != EXTRACT_SUCCESS ) {
56  ::printf( "\nERROR: Event extraction from file %s failed.\n", input.c_str() );
57  return 1;
58  }
59  return 0;
60  } catch ( const std::exception& e ) {
61  ::printf( "\nERROR: Event extraction from file %s failed [%s]\n", input.c_str(), e.what() );
62  } catch ( ... ) { ::printf( "\nERROR: Event extraction from file %s failed [unknown reason]\n", input.c_str() ); }
63  return 1;
64 }
T sscanf(T...args)
list argv
Definition: gaudirun.py:294
void usage(std::string argv0)
T what(T...args)
STL class.
void toupper(std::string &s)