#include "AthenaKernel/CLASS_DEF.h"
#include <iostream>
#include <stdint.h>
#include <string>
#include <vector>
#include "TrigMonitoringEvent/TrigConfSig.h"
Go to the source code of this file.
|
| Trig |
| The common trigger namespace for trigger analysis tools.
|
|
| Trig::Bits |
|
|
std::string | str (const TrigConfChain &) |
|
uint16_t | Trig::getEncodedId (int level, int counter) |
|
uint16_t | Trig::getEncodedId (const std::string &level, int counter) |
|
uint16_t | Trig::getCounterFromEncodedId (uint16_t encoded) |
|
uint16_t | Trig::getLevelFromEncodedId (uint16_t encoded) |
|
bool | operator== (const TrigConfChain &lhs, const TrigConfChain &rhs) |
|
bool | operator< (const TrigConfChain &lhs, const TrigConfChain &rhs) |
|
bool | operator== (const TrigConfChain &chn, const std::string &name) |
|
bool | operator== (const std::string &name, const TrigConfChain &chn) |
|
bool | operator< (const TrigConfChain &chn, const std::string &name) |
|
bool | operator< (const std::string &name, const TrigConfChain &chn) |
|
bool | operator== (const TrigConfChain &chn, unsigned int id) |
|
bool | operator== (unsigned int id, const TrigConfChain &chn) |
|
bool | operator< (const TrigConfChain &chn, unsigned int id) |
|
bool | operator< (unsigned int id, const TrigConfChain &chn) |
|
◆ operator<() [1/5]
◆ operator<() [2/5]
◆ operator<() [3/5]
◆ operator<() [4/5]
◆ operator<() [5/5]
◆ operator==() [1/5]
◆ operator==() [2/5]
◆ operator==() [3/5]
◆ operator==() [4/5]
◆ operator==() [5/5]
◆ str()
Definition at line 229 of file TrigConfChain.cxx.
233 s <<
"TrigConfChain: "
234 << o.getLevel() <<
" " << o.getName()
235 <<
" PS=" << o.getPS() <<
" PT=" << o.getPT()
236 <<
" lower chain=" << o.getLowerName() << std::endl;
238 s <<
" signatures: ";
239 for(
unsigned int i = 0;
i < o.getSignature().
size(); ++
i) {
240 s <<
str(o.getSignature()[
i]) <<
" ";
245 for(
unsigned int i = 0;
i < o.getStream().
size(); ++
i) {
246 s << o.getStream()[
i] <<
" ";
251 for(
unsigned int i = 0;
i < o.getGroup().
size(); ++
i) {
252 s << o.getGroup()[
i] <<
" ";