-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSample.cpp
executable file
·92 lines (80 loc) · 1.28 KB
/
Sample.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* Sample.cpp
*
* Created on: May 4, 2012
* Author: nhatuan
*/
#include "Sample.h"
/**
* constructor
*/
Sample::Sample() {
name = "";
contrast = 0;
strength = 0;
clusterIndex = 3;
}
/**
*
*/
Sample::Sample(const Sample &s) {
name = s.name;
contrast = s.contrast;
strength = s.strength;
clusterIndex = s.clusterIndex;
}
/**
* custom constructor
*/
Sample::Sample(string _name, float x, float y) {
name = _name;
contrast = x;
strength = y;
}
Sample::~Sample() {
// TODO Auto-generated destructor stub
}
/**
* set name for sample
*/
void Sample::setName(string _name) {
name = _name;
}
/**
* set the intensities values (or contrast and strength)
*/
void Sample::setValues(float x, float y) {
contrast = x;
strength = y;
}
/**
* get sample's name
*/
string Sample::getName() {
return name;
}
/**
* get the x intensities (or contrast)
*/
float Sample::getContrast() {
return contrast;
}
/**
* get the y intensities (or strength)
*/
float Sample::getStrength() {
return strength;
}
/**
* set index of cluster for sample, there are four type of cluster:
* 0: AA, 1: AB, 2: BB, and 3: NULL
*/
void Sample::setClusterIndex(int index){
clusterIndex = index;
}
/**
* get the current index of cluster
*/
int Sample::getClusterIndex() {
return clusterIndex;
}