summaryrefslogtreecommitdiffstats
path: root/storagemgr/stgmddconfig.cc
blob: c00847987edbba04baa032faf0528036c01f5635 (plain)
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
#include "storagemgr/stgmddconfig.hh"

using namespace std;

/****************************************************************************
 *
 *
 * INCLUDE: stgmddconfig.hh
 *
 * MODULE:  qlparser
 * CLASS:   StgMddConfig
 *
 * CHANGE HISTORY (append further entries):
 * when         who        what
 * -----------------------------------------------------------------------
 * 17-Aug-09	aaiordachi	create class (for adding rasql tiling options)
 * COMMENTS:
 *
 ****************************************************************************/

StgMddConfig::StgMddConfig()
{}
StgMddConfig::~StgMddConfig()
{}

// Setter functions 
void StgMddConfig::setBBoxes(const vector<r_Minterval>& input)
{
	bboxes = input;
}

void StgMddConfig::setSubTiling()
{
	subTiling = true;
}

void StgMddConfig::resetSubTiling()
{
	subTiling = false;
}

void StgMddConfig::setInterestThreshold(double i)
{
	interestThreshold = i;
}

void StgMddConfig::setBorderThreshold(unsigned int b)
{
	borderThreshold = b;
}

void StgMddConfig::setCellSize(int size)
{
	cellSize = size;
}

void StgMddConfig::setDirDecompose(const vector<r_Dir_Decompose>& input)
{
	dirDecomp = input;
}

// Getter functions 
vector<r_Minterval>& StgMddConfig::getBBoxes()
{
	return bboxes;
}

bool StgMddConfig::getSubTiling()
{
	return subTiling;
}

double StgMddConfig::getInterestThreshold()
{
	return interestThreshold;
}

unsigned int StgMddConfig::getBorderThreshold()
{
	return borderThreshold;
}

int StgMddConfig::getCellSize()
{
	return cellSize;
}

vector<r_Dir_Decompose>& StgMddConfig::getDirDecompose()
{
	return dirDecomp;
}