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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
|
//
//
#include "CondFormats/HLTObjects/interface/AlCaRecoTriggerBits.h"
#include "CondFormats/DataRecord/interface/AlCaRecoTriggerBitsRcd.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GtLogicParser.h"
#include "DQM/TrackerCommon/interface/TriggerHelper.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <string>
#include <vector>
/// To be called from the ED module's c'tor
TriggerHelper::TriggerHelper(const edm::ParameterSet &config, edm::ConsumesCollector &iC)
: watchDB_(nullptr),
gtDBKey_(""),
l1DBKey_(""),
hltDBKey_(""),
on_(true),
onDcs_(true),
onGt_(true),
onL1_(true),
onHlt_(true),
configError_("CONFIG_ERROR") {
// General switch(es)
if (config.exists("andOr")) {
andOr_ = config.getParameter<bool>("andOr");
} else {
on_ = false;
onDcs_ = false;
onGt_ = false;
onL1_ = false;
onHlt_ = false;
}
if (on_) {
if (config.exists("andOrDcs")) {
andOrDcs_ = config.getParameter<bool>("andOrDcs");
dcsInputTag_ = config.getParameter<edm::InputTag>("dcsInputTag");
dcsInputToken_ = iC.mayConsume<DcsStatusCollection>(dcsInputTag_);
dcsRecordInputTag_ = config.getParameter<edm::InputTag>("dcsRecordInputTag");
dcsRecordToken_ = iC.mayConsume<DCSRecord>(dcsRecordInputTag_);
dcsPartitions_ = config.getParameter<std::vector<int>>("dcsPartitions");
errorReplyDcs_ = config.getParameter<bool>("errorReplyDcs");
} else {
onDcs_ = false;
}
if (config.exists("andOrGt")) {
andOrGt_ = config.getParameter<bool>("andOrGt");
gtLogicalExpressions_ = config.getParameter<std::vector<std::string>>("gtStatusBits");
errorReplyGt_ = config.getParameter<bool>("errorReplyGt");
if (config.exists("gtDBKey"))
gtDBKey_ = config.getParameter<std::string>("gtDBKey");
} else {
onGt_ = false;
}
if (config.exists("andOrL1")) {
andOrL1_ = config.getParameter<bool>("andOrL1");
l1LogicalExpressions_ = config.getParameter<std::vector<std::string>>("l1Algorithms");
errorReplyL1_ = config.getParameter<bool>("errorReplyL1");
if (config.exists("l1DBKey"))
l1DBKey_ = config.getParameter<std::string>("l1DBKey");
} else {
onL1_ = false;
}
if (config.exists("andOrHlt")) {
andOrHlt_ = config.getParameter<bool>("andOrHlt");
hltInputTag_ = config.getParameter<edm::InputTag>("hltInputTag");
hltInputToken_ = iC.mayConsume<edm::TriggerResults>(hltInputTag_);
hltLogicalExpressions_ = config.getParameter<std::vector<std::string>>("hltPaths");
errorReplyHlt_ = config.getParameter<bool>("errorReplyHlt");
if (config.exists("hltDBKey"))
hltDBKey_ = config.getParameter<std::string>("hltDBKey");
} else {
onHlt_ = false;
}
if (!onDcs_ && !onGt_ && !onL1_ && !onHlt_)
on_ = false;
else
watchDB_ = new edm::ESWatcher<AlCaRecoTriggerBitsRcd>;
}
}
/// To be called from d'tors by 'delete'
TriggerHelper::~TriggerHelper() {
if (on_)
delete watchDB_;
}
/// To be called from beginedm::Run() methods
void TriggerHelper::initRun(const edm::Run &run, const edm::EventSetup &setup) {
// FIXME Can this stay safely in the run loop, or does it need to go to the
// event loop? Means: Are the event setups identical?
if (watchDB_->check(setup)) {
if (onGt_ && !gtDBKey_.empty()) {
const std::vector<std::string> exprs(expressionsFromDB(gtDBKey_, setup));
if (exprs.empty() || exprs.at(0) != configError_)
gtLogicalExpressions_ = exprs;
}
if (onL1_ && !l1DBKey_.empty()) {
const std::vector<std::string> exprs(expressionsFromDB(l1DBKey_, setup));
if (exprs.empty() || exprs.at(0) != configError_)
l1LogicalExpressions_ = exprs;
}
if (onHlt_ && !hltDBKey_.empty()) {
const std::vector<std::string> exprs(expressionsFromDB(hltDBKey_, setup));
if (exprs.empty() || exprs.at(0) != configError_)
hltLogicalExpressions_ = exprs;
}
}
hltConfigInit_ = false;
if (onHlt_) {
if (hltInputTag_.process().empty()) {
edm::LogError("TriggerHelper") << "HLT TriggerResults InputTag \"" << hltInputTag_.encode()
<< "\" specifies no process";
} else {
bool hltChanged(false);
if (!hltConfig_.init(run, setup, hltInputTag_.process(), hltChanged)) {
edm::LogError("TriggerHelper") << "HLT config initialization error with process name \""
<< hltInputTag_.process() << "\"";
} else if (hltConfig_.size() <= 0) {
edm::LogError("TriggerHelper") << "HLT config size error";
} else
hltConfigInit_ = true;
}
}
}
/// To be called from analyze/filter() methods
bool TriggerHelper::accept(const edm::Event &event, const edm::EventSetup &setup) {
if (!on_)
return true;
// Determine decision
if (andOr_)
return (acceptDcs(event) || acceptGt(event) || acceptL1(event, setup) || acceptHlt(event));
return (acceptDcs(event) && acceptGt(event) && acceptL1(event, setup) && acceptHlt(event));
}
bool TriggerHelper::acceptDcs(const edm::Event &event) {
// An empty DCS partitions list acts as switch.
if (!onDcs_ || dcsPartitions_.empty())
return (!andOr_); // logically neutral, depending on base logical connective
bool useDCSRecord(false);
// Accessing the DcsStatusCollection
edm::Handle<DcsStatusCollection> dcsStatus;
event.getByToken(dcsInputToken_, dcsStatus);
edm::Handle<DCSRecord> dcsRecord;
event.getByToken(dcsRecordToken_, dcsRecord);
// none of the DCS products is valid
if (!dcsStatus.isValid() && !dcsRecord.isValid()) {
edm::LogWarning("TriggerHelper") << "DcsStatusCollection product with InputTag \"" << dcsInputTag_.encode()
<< "\" not in event \n"
<< "DCSRecord product with InputTag \"" << dcsRecordInputTag_.encode()
<< "\" not in event \n"
<< " ==> decision: " << errorReplyDcs_;
return errorReplyDcs_;
}
if (dcsStatus.isValid() && (*dcsStatus).empty()) {
if (event.eventAuxiliary().isRealData()) {
// this is the Data case for >= Run3, DCSStatus is available (unpacked), but empty
// becasue SCAL is not in data-taking. In this case we fall back to s/w FED 1022
if (dcsRecord.isValid()) {
useDCSRecord = true;
} else {
edm::LogWarning("TriggerHelper") << "DCSRecord product with InputTag \"" << dcsRecordInputTag_.encode()
<< "\" empty ==> decision: " << errorReplyDcs_;
return errorReplyDcs_;
}
} else {
// this is the case in which the DCS status is empty, but it's not real data.
edm::LogInfo("TriggerHelper") << "DcsStatusCollection product with InputTag \"" << dcsInputTag_.encode()
<< "\" empty ==> decision: " << errorReplyDcs_;
return errorReplyDcs_;
}
}
// Determine decision of DCS partition combination and return
if (andOrDcs_) { // OR combination
for (std::vector<int>::const_iterator partitionNumber = dcsPartitions_.begin();
partitionNumber != dcsPartitions_.end();
++partitionNumber) {
if (acceptDcsPartition(dcsStatus, dcsRecord, useDCSRecord, *partitionNumber))
return true;
}
return false;
}
for (std::vector<int>::const_iterator partitionNumber = dcsPartitions_.begin();
partitionNumber != dcsPartitions_.end();
++partitionNumber) {
if (!acceptDcsPartition(dcsStatus, dcsRecord, useDCSRecord, *partitionNumber))
return false;
}
return true;
}
bool TriggerHelper::acceptDcsPartition(const edm::Handle<DcsStatusCollection> &dcsStatus,
const edm::Handle<DCSRecord> &dcsRecord,
bool useDCSRecord,
int dcsPartition) const {
int theDCSRecordPartition;
// Error checks
switch (dcsPartition) {
case DcsStatus::EBp:
theDCSRecordPartition = DCSRecord::EBp;
break;
case DcsStatus::EBm:
theDCSRecordPartition = DCSRecord::EBm;
break;
case DcsStatus::EEp:
theDCSRecordPartition = DCSRecord::EEp;
break;
case DcsStatus::EEm:
theDCSRecordPartition = DCSRecord::EBm;
break;
case DcsStatus::HBHEa:
theDCSRecordPartition = DCSRecord::HBHEa;
break;
case DcsStatus::HBHEb:
theDCSRecordPartition = DCSRecord::HBHEb;
break;
case DcsStatus::HBHEc:
theDCSRecordPartition = DCSRecord::HBHEc;
break;
case DcsStatus::HF:
theDCSRecordPartition = DCSRecord::HF;
break;
case DcsStatus::HO:
theDCSRecordPartition = DCSRecord::HO;
break;
case DcsStatus::RPC:
theDCSRecordPartition = DCSRecord::RPC;
break;
case DcsStatus::DT0:
theDCSRecordPartition = DCSRecord::DT0;
break;
case DcsStatus::DTp:
theDCSRecordPartition = DCSRecord::DTp;
break;
case DcsStatus::DTm:
theDCSRecordPartition = DCSRecord::DTm;
break;
case DcsStatus::CSCp:
theDCSRecordPartition = DCSRecord::CSCp;
break;
case DcsStatus::CSCm:
theDCSRecordPartition = DCSRecord::CSCm;
break;
case DcsStatus::CASTOR:
theDCSRecordPartition = DCSRecord::CASTOR;
break;
case DcsStatus::TIBTID:
theDCSRecordPartition = DCSRecord::TIBTID;
break;
case DcsStatus::TOB:
theDCSRecordPartition = DCSRecord::TOB;
break;
case DcsStatus::TECp:
theDCSRecordPartition = DCSRecord::TECp;
break;
case DcsStatus::TECm:
theDCSRecordPartition = DCSRecord::TECm;
break;
case DcsStatus::BPIX:
theDCSRecordPartition = DCSRecord::BPIX;
break;
case DcsStatus::FPIX:
theDCSRecordPartition = DCSRecord::FPIX;
break;
case DcsStatus::ESp:
theDCSRecordPartition = DCSRecord::ESp;
break;
case DcsStatus::ESm:
theDCSRecordPartition = DCSRecord::ESm;
break;
default:
edm::LogWarning("TriggerHelper") << "DCS partition number \"" << dcsPartition
<< "\" does not exist ==> decision: " << errorReplyDcs_;
return errorReplyDcs_;
}
// Determine decision
if (!useDCSRecord) {
return dcsStatus->at(0).ready(dcsPartition);
} else {
LogDebug("TriggerHelper") << "using dcs record, dcsPartition:" << dcsPartition << " " << theDCSRecordPartition
<< " " << (*dcsRecord).partitionName(theDCSRecordPartition) << " "
<< (*dcsRecord).highVoltageReady(theDCSRecordPartition) << std::endl;
return (*dcsRecord).highVoltageReady(theDCSRecordPartition);
}
}
/// Does this event fulfill the configured GT status logical expression
/// combination?
bool TriggerHelper::acceptGt(const edm::Event &event) {
// An empty GT status bits logical expressions list acts as switch.
if (!onGt_ || gtLogicalExpressions_.empty())
return (!andOr_); // logically neutral, depending on base logical connective
// Accessing the L1GlobalTriggerReadoutRecord
edm::Handle<L1GlobalTriggerReadoutRecord> gtReadoutRecord;
event.getByToken(gtInputToken_, gtReadoutRecord);
if (!gtReadoutRecord.isValid()) {
//edm::LogError("TriggerHelper") << "L1GlobalTriggerReadoutRecord product with InputTag \"" << gtInputTag_.encode()
// << "\" not in event ==> decision: " << errorReplyGt_;
return errorReplyGt_;
}
// Determine decision of GT status bits logical expression combination and
// return
if (andOrGt_) { // OR combination
for (std::vector<std::string>::const_iterator gtLogicalExpression = gtLogicalExpressions_.begin();
gtLogicalExpression != gtLogicalExpressions_.end();
++gtLogicalExpression) {
if (acceptGtLogicalExpression(gtReadoutRecord, *gtLogicalExpression))
return true;
}
return false;
}
for (std::vector<std::string>::const_iterator gtLogicalExpression = gtLogicalExpressions_.begin();
gtLogicalExpression != gtLogicalExpressions_.end();
++gtLogicalExpression) {
if (!acceptGtLogicalExpression(gtReadoutRecord, *gtLogicalExpression))
return false;
}
return true;
}
/// Does this event fulfill this particular GT status bits' logical expression?
bool TriggerHelper::acceptGtLogicalExpression(const edm::Handle<L1GlobalTriggerReadoutRecord> >ReadoutRecord,
std::string gtLogicalExpression) {
// Check empty std::strings
if (gtLogicalExpression.empty()) {
edm::LogError("TriggerHelper") << "Empty logical expression ==> decision: " << errorReplyGt_;
return errorReplyGt_;
}
// Negated paths
bool negExpr(negate(gtLogicalExpression));
if (negExpr && gtLogicalExpression.empty()) {
edm::LogError("TriggerHelper") << "Empty (negated) logical expression ==> decision: " << errorReplyGt_;
return errorReplyGt_;
}
// Parse logical expression and determine GT status bit decision
L1GtLogicParser gtAlgoLogicParser(gtLogicalExpression);
// Loop over status bits
for (size_t iStatusBit = 0; iStatusBit < gtAlgoLogicParser.operandTokenVector().size(); ++iStatusBit) {
const std::string gtStatusBit(gtAlgoLogicParser.operandTokenVector().at(iStatusBit).tokenName);
// Manipulate status bit decision as stored in the parser
bool decision;
// Hard-coded status bits!!!
if (gtStatusBit == "PhysDecl" || gtStatusBit == "PhysicsDeclared") {
decision = (gtReadoutRecord->gtFdlWord().physicsDeclared() == 1);
} else {
edm::LogError("TriggerHelper") << "GT status bit \"" << gtStatusBit
<< "\" is not defined ==> decision: " << errorReplyGt_;
decision = errorReplyDcs_;
}
gtAlgoLogicParser.operandTokenVector().at(iStatusBit).tokenResult = decision;
}
// Determine decision
const bool gtDecision(gtAlgoLogicParser.expressionResult());
return negExpr ? (!gtDecision) : gtDecision;
}
/// Was this event accepted by the configured L1 logical expression combination?
bool TriggerHelper::acceptL1(const edm::Event &event, const edm::EventSetup &setup) {
// An empty L1 logical expressions list acts as switch.
if (!onL1_ || l1LogicalExpressions_.empty())
return (!andOr_); // logically neutral, depending on base logical connective
// Getting the L1 event setup
l1Gt_->retrieveL1EventSetup(setup); // FIXME This can possibly go to initRun()
// Determine decision of L1 logical expression combination and return
if (andOrL1_) { // OR combination
for (std::vector<std::string>::const_iterator l1LogicalExpression = l1LogicalExpressions_.begin();
l1LogicalExpression != l1LogicalExpressions_.end();
++l1LogicalExpression) {
if (acceptL1LogicalExpression(event, *l1LogicalExpression))
return true;
}
return false;
}
for (std::vector<std::string>::const_iterator l1LogicalExpression = l1LogicalExpressions_.begin();
l1LogicalExpression != l1LogicalExpressions_.end();
++l1LogicalExpression) {
if (!acceptL1LogicalExpression(event, *l1LogicalExpression))
return false;
}
return true;
}
/// Was this event accepted by this particular L1 algorithms' logical
/// expression?
bool TriggerHelper::acceptL1LogicalExpression(const edm::Event &event, std::string l1LogicalExpression) {
// Check empty std::strings
if (l1LogicalExpression.empty()) {
edm::LogError("TriggerHelper") << "Empty logical expression ==> decision: " << errorReplyL1_;
return errorReplyL1_;
}
// Negated logical expression
bool negExpr(negate(l1LogicalExpression));
if (negExpr && l1LogicalExpression.empty()) {
edm::LogError("TriggerHelper") << "Empty (negated) logical expression ==> decision: " << errorReplyL1_;
return errorReplyL1_;
}
// Parse logical expression and determine L1 decision
L1GtLogicParser l1AlgoLogicParser(l1LogicalExpression);
// Loop over algorithms
for (size_t iAlgorithm = 0; iAlgorithm < l1AlgoLogicParser.operandTokenVector().size(); ++iAlgorithm) {
const std::string l1AlgoName(l1AlgoLogicParser.operandTokenVector().at(iAlgorithm).tokenName);
int error(-1);
const bool decision(l1Gt_->decision(event, l1AlgoName, error));
// Error checks
if (error != 0) {
if (error == 1)
edm::LogError("TriggerHelper") << "L1 algorithm \"" << l1AlgoName
<< "\" does not exist in the L1 menu ==> decision: " << errorReplyL1_;
else
edm::LogError("TriggerHelper") << "L1 algorithm \"" << l1AlgoName << "\" received error code " << error
<< " from L1GtUtils::decisionBeforeMask ==> decision: " << errorReplyL1_;
l1AlgoLogicParser.operandTokenVector().at(iAlgorithm).tokenResult = errorReplyL1_;
continue;
}
// Manipulate algo decision as stored in the parser
l1AlgoLogicParser.operandTokenVector().at(iAlgorithm).tokenResult = decision;
}
// Return decision
const bool l1Decision(l1AlgoLogicParser.expressionResult());
return negExpr ? (!l1Decision) : l1Decision;
}
/// Was this event accepted by the configured HLT logical expression
/// combination?
bool TriggerHelper::acceptHlt(const edm::Event &event) {
// An empty HLT logical expressions list acts as switch.
if (!onHlt_ || hltLogicalExpressions_.empty())
return (!andOr_); // logically neutral, depending on base logical connective
// Checking the HLT configuration,
if (!hltConfigInit_) {
edm::LogError("TriggerHelper") << "HLT config error ==> decision: " << errorReplyHlt_;
return errorReplyHlt_;
}
// Accessing the TriggerResults
edm::Handle<edm::TriggerResults> hltTriggerResults;
event.getByToken(hltInputToken_, hltTriggerResults);
if (!hltTriggerResults.isValid()) {
edm::LogError("TriggerHelper") << "TriggerResults product with InputTag \"" << hltInputTag_.encode()
<< "\" not in event ==> decision: " << errorReplyHlt_;
return errorReplyHlt_;
}
// Determine decision of HLT logical expression combination and return
if (andOrHlt_) { // OR combination
for (std::vector<std::string>::const_iterator hltLogicalExpression = hltLogicalExpressions_.begin();
hltLogicalExpression != hltLogicalExpressions_.end();
++hltLogicalExpression) {
if (acceptHltLogicalExpression(hltTriggerResults, *hltLogicalExpression))
return true;
}
return false;
}
for (std::vector<std::string>::const_iterator hltLogicalExpression = hltLogicalExpressions_.begin();
hltLogicalExpression != hltLogicalExpressions_.end();
++hltLogicalExpression) {
if (!acceptHltLogicalExpression(hltTriggerResults, *hltLogicalExpression))
return false;
}
return true;
}
/// Was this event accepted by this particular HLT paths' logical expression?
bool TriggerHelper::acceptHltLogicalExpression(const edm::Handle<edm::TriggerResults> &hltTriggerResults,
std::string hltLogicalExpression) const {
// Check empty std::strings
if (hltLogicalExpression.empty()) {
edm::LogError("TriggerHelper") << "Empty logical expression ==> decision: " << errorReplyHlt_;
return errorReplyHlt_;
}
// Negated paths
bool negExpr(negate(hltLogicalExpression));
if (negExpr && hltLogicalExpression.empty()) {
edm::LogError("TriggerHelper") << "Empty (negated) logical expression ==> decision: " << errorReplyHlt_;
return errorReplyHlt_;
}
// Parse logical expression and determine HLT decision
L1GtLogicParser hltAlgoLogicParser(hltLogicalExpression);
// Loop over paths
for (size_t iPath = 0; iPath < hltAlgoLogicParser.operandTokenVector().size(); ++iPath) {
const std::string hltPathName(hltAlgoLogicParser.operandTokenVector().at(iPath).tokenName);
const unsigned indexPath(hltConfig_.triggerIndex(hltPathName));
// Further error checks
if (indexPath == hltConfig_.size()) {
edm::LogError("TriggerHelper") << "HLT path \"" << hltPathName << "\" is not found in process "
<< hltInputTag_.process() << " ==> decision: " << errorReplyHlt_;
hltAlgoLogicParser.operandTokenVector().at(iPath).tokenResult = errorReplyHlt_;
continue;
}
if (hltTriggerResults->error(indexPath)) {
edm::LogError("TriggerHelper") << "HLT path \"" << hltPathName << "\" in error ==> decision: " << errorReplyHlt_;
hltAlgoLogicParser.operandTokenVector().at(iPath).tokenResult = errorReplyHlt_;
continue;
}
// Manipulate algo decision as stored in the parser
const bool decision(hltTriggerResults->accept(indexPath));
hltAlgoLogicParser.operandTokenVector().at(iPath).tokenResult = decision;
}
// Determine decision
const bool hltDecision(hltAlgoLogicParser.expressionResult());
return negExpr ? (!hltDecision) : hltDecision;
}
/// Reads and returns logical expressions from DB
std::vector<std::string> TriggerHelper::expressionsFromDB(const std::string &key, const edm::EventSetup &setup) {
const AlCaRecoTriggerBits *logicalExpressions = &(setup.getData(alcaRecotriggerBitsToken_));
const std::map<std::string, std::string> &expressionMap = logicalExpressions->m_alcarecoToTrig;
std::map<std::string, std::string>::const_iterator listIter = expressionMap.find(key);
if (listIter == expressionMap.end()) {
edm::LogError("TriggerHelper") << "No logical expressions found under key " << key
<< " in 'AlCaRecoTriggerBitsRcd'";
return std::vector<std::string>(1, configError_);
}
return logicalExpressions->decompose(listIter->second);
}
/// Checks for negated words
bool TriggerHelper::negate(std::string &word) const {
bool negate(false);
if (word.at(0) == '~') {
negate = true;
word.erase(0, 1);
}
return negate;
}
|