forked from govoni/LHEActions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nCommentsPerEvent.cpp
74 lines (54 loc) · 1.51 KB
/
nCommentsPerEvent.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// c++ -o nCommentsPerEvent -lm nCommentsPerEvent.cpp
#include "LHEF.h"
#include <iomanip>
#include <vector>
#include <map>
#include <iostream>
#include <string>
#include <sstream>
using namespace std ;
// ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
int splitString (vector<string>& fields, const string & work, char delim, int rep = 0) {
if (!fields.empty ()) fields.clear () ; // empty vector if necessary
string buf = "" ;
int i = 0;
while (i < work.length ()) {
if (work[i] != delim)
buf += work[i] ;
else if (rep == 1) {
fields.push_back (buf) ;
buf = "";
} else if (buf.length() > 0) {
fields.push_back (buf) ;
buf = "" ;
}
i++;
}
if (!buf.empty ())
fields.push_back (buf) ;
return fields.size () ;
}
// ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
int main(int argc, char ** argv)
{
if(argc < 2)
{
cout << "Usage: " << argv[0]
<< " input.lhe" << endl ;
return -1;
}
std::ifstream ifs (argv[1]) ;
LHEF::Reader reader (ifs) ;
int counter = 0 ;
int commentsCounter = 0 ;
//PG loop over input events
while (reader.readEvent ())
{
counter++ ;
vector<string> comments ;
splitString (comments, reader.eventComments, '\n') ;
commentsCounter += comments.size () ;
} //PG loop over input events
cout << commentsCounter * 1. / counter << endl ;
return counter ;
}