-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTigScaler.cxx
138 lines (120 loc) · 2.58 KB
/
TigScaler.cxx
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
// part of TigSortGUI
// author: Ulrike Hager
#include <iostream>
#include <sstream>
#include "TigScaler.h"
using std::string;
//---- TigScaler
TigScaler::TigScaler(void)
: mEventData(NULL)
, mBank("MCS0")
{
ObjType = "Scaler";
}
//---- ~TigScaler
TigScaler::~TigScaler(void)
{
delete [] mEventData;
}
//---- AddRequest
void
TigScaler::AddRequest(string pName, int pChannel)
{
mNames.push_back(pName);
mRequested.push_back(pChannel);
}
//---- Index
int
TigScaler::Index(string pName)
{
for (int i = 0; i<mNames.size(); i++)
{
if (mNames.at(i).compare(pName) == 0 ) return i;
}
return -1;
}
//---- Initialize
bool
TigScaler::Initialize(void)
{
long numRequest = mRequested.size();
mEventData = new int[numRequest];
for (int i = 0; i<numRequest; i++) {
mEventData[i] = 0;
}
SetNumData(1);
SetDataLength(mRequested.size());
// mName = mBank;
return true;
}
//---- ParseInput
bool
TigScaler::ParseInput(string line)
{
bool result = true;
string token;
std::istringstream stream(line.c_str());
stream >> token;
if ( token.compare("bank") == 0)
{
stream >> token;
std::cout << ".(" << token << ").";
SetBank(token);
}
else result = this->TigObject::ParseInput(line);
return result;
}
//---- ParseInput
bool
TigScaler::ParseSignal(string line)
{
bool result = true;
string token;
std::istringstream stream(line.c_str());
stream >> token;
if ( token == "" || token[0] == '#') {} //comment or blank
else if ( token.compare("end") == 0) {
// std::cout << "[TigScaler::ParseSignal] " << mName << " end of signals" << std::endl;
result = false;
}
else
{
int channel;
stream >> channel;
AddRequest(token, channel);
// std::cout << "added signal: " << channel << " - " << token << std::endl;
}
return result;
}
//---- ProcessEvent
bool
TigScaler::ProcessEvent(std::vector<int> pData)
{
for (int i = 0; i<mRequested.size(); i++)
{
if (mRequested[i] > pData.size()){
std::cout << "[TigScaler::ProcessEvent] requested scaler channel not in data"<< std::endl;
return false;
}
mEventData[i] = pData[ mRequested[i] ];
}
this->Update(mRequested.size(),mEventData);
return true;
}
//---- Reset
void
TigScaler::Reset()
{
::memset(mEventData, 0, mRequested.size() * sizeof(int) );
this->Clear();
}
//---- ScalerName
string
TigScaler::ScalerName(int pIndex)
{
if (pIndex > mNames.size() ){
std::cout << "[TigScaler::Name] requested name " << pIndex << " out of " << mNames.size() << std::endl;
return "";
}
return mNames.at(pIndex);
}