-
Notifications
You must be signed in to change notification settings - Fork 650
Expand file tree
/
Copy pathUDGoodRunSelector.cxx
More file actions
189 lines (165 loc) · 4.83 KB
/
UDGoodRunSelector.cxx
File metadata and controls
189 lines (165 loc) · 4.83 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#include "PWGUD/Core/UDGoodRunSelector.h"
#include <Framework/Logger.h>
#include <rapidjson/document.h>
#include <rapidjson/filereadstream.h>
#include <algorithm>
#include <cstdio>
#include <string>
#include <vector>
class TFile;
using namespace rapidjson;
UDGoodRunSelector::UDGoodRunSelector(std::string const& goodRunsFile)
{
init(goodRunsFile);
}
UDGoodRunSelector::~UDGoodRunSelector()
{
clear();
}
void UDGoodRunSelector::clear()
{
mgoodRuns.clear();
mrunMap.clear();
mrnMin = -1;
mrnMax = -1;
misActive = false;
}
void UDGoodRunSelector::Print()
{
LOGF(info, "RunSelector: isActive %i", misActive);
for (const auto& [period, runNumbers] : mrunMap) {
LOGF(info, " run numbers of period \"%s\"", period);
for (const auto& runNumber : runNumbers) {
LOGF(info, " %i", runNumber);
}
}
LOGF(info, " all run numbers");
for (const auto& runNumber : mgoodRuns) {
LOGF(info, " %i", runNumber);
}
}
bool UDGoodRunSelector::isGoodRun(int runNumber)
{
// search for runNumber in mgoodRuns
if (!misActive) {
return true;
} else {
return std::find(mgoodRuns.begin(), mgoodRuns.end(), runNumber) != mgoodRuns.end();
}
}
std::vector<int> UDGoodRunSelector::goodRuns(std::string runPeriod)
{
auto it = mrunMap.find(runPeriod.c_str());
if (it != mrunMap.end()) {
return it->second;
} else {
return std::vector<int>{};
}
}
bool UDGoodRunSelector::init(std::string const& goodRunsFile)
{
// parse goodRunsFile and fill mgoodRuns
// goodRunsFile is expected to be a json file with the structure like
// {
// "goodRuns": [
// {
// "period": "LHC22e",
// "runlist": [ 519041, 519043, 519045 ]
// },
// {
// "period": "LHC22f",
// "runlist": [ 520143 ]
// }
// ]
// }
misActive = false;
if (goodRunsFile.empty()) {
LOGF(info, "goodRuns was not specified!");
return true;
}
// open the file
FILE* fjson = fopen(goodRunsFile.c_str(), "r");
if (!fjson) {
LOGF(info, "Could not open goodRuns file %s", goodRunsFile);
return false;
}
// create streamer
char readBuffer[65536];
FileReadStream jsonStream(fjson, readBuffer, sizeof(readBuffer));
// parse the json file
Document jsonDocument;
jsonDocument.ParseStream(jsonStream);
// is it a proper json document?
if (jsonDocument.HasParseError()) {
LOGF(error, "Check the goodRuns file! There is a problem with the format!");
return false;
}
// goodRuns
std::string runPeriod{""};
int runNumber;
const char* itemName = "goodRuns";
if (!jsonDocument.HasMember(itemName)) {
LOGF(error, "Check the goodRuns file! Item %s is missing!", itemName);
return false;
}
const Value& item0 = jsonDocument[itemName];
if (!item0.IsArray()) {
LOGF(error, "Check the goodRuns file! Item %s must be an array!", itemName);
return false;
}
// loop over all runPeriods
for (auto& item1 : item0.GetArray()) {
if (!item1.IsObject()) {
LOGF(error, "Check the goodRuns file! %s must be objects!", itemName);
return false;
}
// name of the period
itemName = "period";
if (item1.HasMember(itemName)) {
if (item1[itemName].IsString()) {
runPeriod = item1[itemName].GetString();
} else {
LOGF(error, "Check the goodRuns file!%s must be a string!", itemName);
return false;
}
}
// runNumbers
itemName = "runlist";
if (item1.HasMember(itemName)) {
if (!item1[itemName].IsArray()) {
LOGF(error, "Check the goodRuns file! Item %s must be an array!", itemName);
return false;
}
// update goodRuns and mrunMap
for (auto& item2 : item1[itemName].GetArray()) {
runNumber = item2.GetInt();
if (runNumber < mrnMin) {
mrnMin = runNumber;
} else if (runNumber > mrnMax) {
mrnMax = runNumber;
}
mgoodRuns.push_back(runNumber);
mrunMap[runPeriod].push_back(runNumber);
misActive = true;
}
}
}
// make mgoodRuns unique
std::sort(mgoodRuns.begin(), mgoodRuns.end());
auto last = std::unique(mgoodRuns.begin(), mgoodRuns.end());
mgoodRuns.erase(last, mgoodRuns.end());
// clean up
fclose(fjson);
return misActive;
}
// =============================================================================