EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EventDpmjet.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EventDpmjet.cxx
1 
11 
12 #include <sstream>
13 #include <string>
14 
15 namespace erhic {
16 
17 bool EventDpmjet::Parse(const std::string& line) {
18  static std::stringstream ss;
19  ss.str("");
20  ss.clear();
21  ss << line;
22  ss >> I >> ievent >> process1 >> process2 >> IP >> dtrueW2
25  >> nTracks;
26  number = ievent;
27  return !ss.fail();
28 }
29 
30 } // namespace erhic