Class Reference for E1039 Core & Analysis Software
Fun4AllUtils.cc
Go to the documentation of this file.
1 #include "Fun4AllUtils.h"
2 
3 #include <boost/tokenizer.hpp>
4 #include <boost/foreach.hpp>
5 // this is an ugly hack, the gcc optimizer has a bug which
6 // triggers the uninitialized variable warning which
7 // stops compilation because of our -Werror
8 #include <boost/version.hpp> // to get BOOST_VERSION
9 #if (__GNUC__ == 4 && __GNUC_MINOR__ == 4 && BOOST_VERSION == 105700 )
10 #pragma GCC diagnostic ignored "-Wuninitialized"
11 #pragma message "ignoring bogus gcc warning in boost header lexical_cast.hpp"
12 #include <boost/lexical_cast.hpp>
13 #pragma GCC diagnostic warning "-Wuninitialized"
14 #else
15 #include <boost/lexical_cast.hpp>
16 #endif
17 
18 #include <iostream>
19 #include <vector>
20 
21 using namespace std;
22 
23 // relying on our standard filenames ...-<runnumber>-<segment>.<ext>
24 // extract run number and segment number from filename
25 std::pair<int, int>
26 Fun4AllUtils::GetRunSegment(const std::string &filename)
27 {
28  int runnumber = 0;
29  int segment = -9999;
30  boost::char_separator<char> sep("-.");
31  boost::tokenizer<boost::char_separator<char> > tok(filename,sep);
32  // tokenizer does not have reverse iterator, so fill it in vector
33  // and reverse iterate on vector
34  vector<string> tokens;
35  BOOST_FOREACH(string t, tok)
36  {
37  tokens.push_back(t);
38  }
39  tokens.pop_back(); // remove the file extension
40  // try to extract segment number
41  try
42  {
43  segment = boost::lexical_cast<int>((*(tokens.rbegin())) );
44  }
45  catch ( boost::bad_lexical_cast const& )
46  {
47  cout << "Cannot extract segment number from filename "
48  << filename << endl;
49  cout << "Segment string after parsing: input string "
50  << *(tokens.rbegin())
51  << " is not valid segment number" << endl;
52  cout << "filename " << filename << " not standard -runnumber-segment.ext"
53  << endl;
54  cout << "using " << segment << " as segment number" << endl;
55  }
56  tokens.pop_back(); // remove the segment number
57  // try to extract run number
58  try
59  {
60  runnumber = boost::lexical_cast<int>((*(tokens.rbegin())) );
61  }
62  catch ( boost::bad_lexical_cast const& )
63  {
64  cout << "Cannot extract run number from filename "
65  << filename << endl;
66  cout << "Segment string after parsing: input string "
67  << *(tokens.rbegin())
68  << " is not valid run number" << endl;
69  cout << "filename " << filename << " not standard -runnumber-segment.ext"
70  << endl;
71  cout << "returning " << runnumber << " as run number" << endl;
72  }
73  return make_pair(runnumber,segment);
74 }
std::pair< int, int > GetRunSegment(const std::string &filename)
Definition: Fun4AllUtils.cc:26