-
Notifications
You must be signed in to change notification settings - Fork 7
/
WindowsList.h
65 lines (48 loc) · 1.26 KB
/
WindowsList.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
// Stores a hsitory of the various window sizes used for finding matching segments in individual pairs
#ifndef WINDOWSLIST_H
#define WINDOWSLIST_H
#include "BasicDefinitions.h"
#include <vector>
#include <cstdlib>
#include <time.h>
#include <math.h>
using namespace std;
class WindowsList;
class WindowInfo
{
public:
WindowInfo(unsigned int, unsigned int , unsigned int );
//void setStart(unsigned int);
void setEnd(unsigned int);
void setSize(unsigned int);
unsigned int getStart();
unsigned int getEnd();
unsigned int getSize();
private:
unsigned int start;
unsigned int end;
unsigned int size;
};
class WindowsList
{
public:
unsigned int getWindowStart(unsigned int);
unsigned int getWindowStart();
unsigned int getWindowEnd(unsigned int);
unsigned int getWindowEnd();
unsigned int getWindowSize(unsigned int);
unsigned int getWindowSize();
int err_hom(unsigned int);
int err_het(unsigned int);
void clear();
void initialize(unsigned int);
void getNewWindowSize(unsigned int );
int updateWindowSize(unsigned int);
unsigned long long calculateMem();
private:
vector<WindowInfo> windows_list;
vector<WindowInfo>::iterator it ;
int currentWindowPos;
};
#endif
//end WindowsList.h