9#include <framework/database/DBImportObjPtr.h>
10#include <trg/cdc/dbobjects/CDCTriggerNeuroConfig.h>
18 for (
int i = 1; i < argc; ++i)
19 this->tokens.push_back(std::string(argv[i]));
21 const std::string& getCmdOption(
const std::string& option)
const
23 std::vector<std::string>::const_iterator itr;
24 itr = std::find(this->tokens.begin(), this->tokens.end(), option);
25 if (itr != this->tokens.end() && ++itr != this->tokens.end()) {
28 static const std::string empty_string(
"");
31 bool cmdOptionExists(
const std::string& option)
const
33 return std::find(this->tokens.begin(), this->tokens.end(), option)
34 != this->tokens.end();
37 std::vector <std::string> tokens;
42int main(
int argc,
char** argv)
49 std::string configfilename =
"";
60 if (input.cmdOptionExists(
"-h")) {
61 std::cout <<
"A small tool to create ConDB payloads for the Neurotrigger." << std::endl;
62 std::cout <<
"Usage: \% trg-cdc-neurotrigger-writedb -f example.conf" << std::endl;
64 const std::string& filename = input.getCmdOption(
"-f");
65 if (!filename.empty()) {
66 configfilename = filename;
73 std::ifstream confile;
75 confile.open(configfilename, std::ifstream::in);
77 std::cout <<
"ERROR! While opening file: " << configfilename <<
" Error code: " << e << std::endl;
81 if (!confile.is_open()) {
82 std::cout <<
"ERROR! While opening file: " << configfilename << std::endl;
85 while (std::getline(confile, line_all)) {
86 std::size_t hashtag = line_all.find(
'#');
87 std::string line = line_all.substr(0, hashtag);
90 if (line.length() < 3) {
94 if (line.find(
'=') == std::string::npos) {
97 par = line.substr(0, line.find(
'='));
98 par.erase(std::remove(par.begin(), par.end(),
' '), par.end());
100 if (par ==
"nniov_run_start") {
101 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
102 nniov_run_start = std::stoi(key);
105 if (par ==
"nniov_run_end") {
106 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
107 nniov_run_end = std::stoi(key);
110 if (par ==
"nniov_exp_start") {
111 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
112 nniov_exp_start = std::stoi(key);
115 if (par ==
"nniov_exp_end") {
116 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
117 nniov_exp_end = std::stoi(key);
120 if (par ==
"nnname") {
122 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
125 nc->setNNName(nnname);
127 if (par ==
"nnnote") {
129 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
132 nc->setNNNotes(nnnote);
134 if (par ==
"nnpath") {
136 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
139 nc->loadMLPs(nnpath,
"MLPs");
141 if (par ==
"fwname") {
143 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
146 nc->setNNTFirmwareVersionID(fwname);
148 if (par ==
"fwnote") {
150 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
153 nc->setNNTFirmwareComment(fwnote);
156 if (par ==
"ppnote") {
158 key = line.substr((line.find(
'"') + 1), (line.find(
'"', line.find(
'"') + 1) - 1 - line.find(
'"')));
161 nc->setPPNotes(ppnote);
163 if (par ==
"ppbool") {
164 if (line.find(
"alse") != std::string::npos) {
166 }
else if (line.find(
"rue") != std::string::npos) {
169 std::cout <<
"ERROR!: Wrong key argument for parameter ppbool:" << line << std::endl;
172 nc->setUseETF(ppbool);
174 if (par ==
"addb2formatline") {
176 std::stringstream ss;
177 ss << line.substr((line.find(
'(') + 1), (line.find(
')') - 1 - line.find(
'(')));
179 std::string startstr;
181 std::string offsetstr;
182 std::string description;
183 std::getline(ss, uid,
',');
184 std::getline(ss, startstr,
',');
185 std::getline(ss, endstr,
',');
186 std::getline(ss, offsetstr,
',');
187 std::getline(ss, description,
'\n');
188 nc->addB2FormatLine(std::stoi(startstr), std::stoi(endstr), std::stoi(offsetstr), uid.substr((uid.find(
'"') + 1), (uid.find(
'"',
189 uid.find(
'"') + 1) - 1 - uid.find(
'"'))), description.substr((description.find(
'"') + 1), (description.find(
'"',
190 description.find(
'"') + 1) - 1 - description.find(
'"'))));
196 IntervalOfValidity iov(nniov_exp_start, nniov_run_start, nniov_exp_end, nniov_run_end);
Class for importing a single object to the database.
A class that describes the interval of experiments/runs for which an object in the database is valid.
Abstract base class for different kinds of events.