-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.h
144 lines (115 loc) · 2.52 KB
/
setup.h
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#ifndef SPMAIN_H
#define SPMAIN_H
#include <vector>
#include <set>
#include <map>
#include <string>
#include "sputil.h"
#include "sample.h"
#include "pairsample.h"
#include "anafunctors.h"
#include "groupana.h"
using namespace std;
template<class ANA>
struct AnalysisHandler
{
public:
typedef ANA analysis_t;
protected:
map<string, analysis_t *> _stats;
vector<string> _names;
vector<analysis_t *> _active;
vector<string> _active_names;
public:
~AnalysisHandler()
{
// TODO: delete analysis objects
}
void add(const string & name, analysis_t * a)
{
_stats[name] = a;
_names.push_back(name);
}
analysis_t * get(const string & name)
{
if (!exists(name))
return 0;
return _stats[name];
}
bool exists(const string & name) const
{
return _stats.count(name);
}
const vector<string> & names() const
{ return _names; }
void activate(set<string> & active)
{
_active.clear();
_active_names.clear();
for (size_t i=0; i<_names.size(); i++)
if (active.count(_names[i]) && exists(_names[i]))
{
_active_names.push_back(_names[i]);
_active.push_back(_stats[_names[i]]);
}
}
const vector<analysis_t *> & active() const
{ return _active; }
const vector<string> & active_names() const
{ return _active_names; }
};
typedef vector<int> Sequence;
typedef Sample<Sequence> StrSample;
typedef PairSample<Sequence> PairStrSample;
typedef AnalysisBase<StrSample> SingleStats;
typedef AnalysisBase<PairStrSample> PairStats;
typedef AnalysisBase<vector<StrSample*> > GroupStats;
class SSHandler : public AnalysisHandler<SingleStats>
{
public:
SSHandler();
};
class PSHandler : public AnalysisHandler<PairStats>
{
public:
PSHandler();
};
template<class SAMPLEV>
class GroupStatHandler
{
public:
typedef vector<size_t> group_t;
typedef AnalysisBase<SAMPLEV> analysis_t;
protected:
vector<group_t> _groups;
vector<string> _names;
vector<analysis_t*> _stats;
public:
void add(const string & name, const group_t & group)
{
analysis_t * ana = 0;
if (name == "f3")
ana = new PatF3<SAMPLEV>();
else if (name == "f4")
ana = new PatF4<SAMPLEV>();
else if (name == "var")
ana = new FreqVarying<SAMPLEV>();
VERIFY_MSG(ana, string("Error: unknown stat name '" + name + "'"));
_stats.push_back(ana);
_groups.push_back(group);
_names.push_back(name);
}
const vector<string> & names() const
{
return _names;
}
const vector<group_t> & groups() const
{
return _groups;
}
const vector<analysis_t *> & stats() const
{
return _stats;
}
};
#endif // SPMAIN_H