CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
triggerExpression::L1uGTReader Class Reference

#include <TriggerExpressionL1uGTReader.h>

Inheritance diagram for triggerExpression::L1uGTReader:
triggerExpression::Evaluator

Public Member Functions

void dump (std::ostream &out) const override
 
void init (const Data &data) override
 
 L1uGTReader (const std::string &pattern)
 
bool operator() (const Data &data) const override
 
- Public Member Functions inherited from triggerExpression::Evaluator
 Evaluator ()
 
virtual ~Evaluator ()
 

Private Attributes

std::string m_pattern
 
std::vector< std::pair< std::string, unsigned int > > m_triggers
 

Detailed Description

Definition at line 11 of file TriggerExpressionL1uGTReader.h.

Constructor & Destructor Documentation

triggerExpression::L1uGTReader::L1uGTReader ( const std::string &  pattern)
inline

Definition at line 13 of file TriggerExpressionL1uGTReader.h.

References data, dump(), init(), operator()(), and MillePedeFileConverter_cfg::out.

13  :
15  m_triggers()
16  { }
std::vector< std::pair< std::string, unsigned int > > m_triggers

Member Function Documentation

void triggerExpression::L1uGTReader::dump ( std::ostream &  out) const
overridevirtual

Implements triggerExpression::Evaluator.

Definition at line 30 of file TriggerExpressionL1uGTReader.cc.

References plotBeamSpotDB::first, mps_fire::i, and m_triggers.

Referenced by L1uGTReader().

30  {
31  if (m_triggers.empty()) {
32  out << "FALSE";
33  } else if (m_triggers.size() == 1) {
34  out << m_triggers[0].first;
35  } else {
36  out << "(" << m_triggers[0].first;
37  for (unsigned int i = 1; i < m_triggers.size(); ++i)
38  out << " OR " << m_triggers[i].first;
39  out << ")";
40  }
41 }
std::vector< std::pair< std::string, unsigned int > > m_triggers
void triggerExpression::L1uGTReader::init ( const Data data)
overridevirtual

Reimplemented from triggerExpression::Evaluator.

Definition at line 43 of file TriggerExpressionL1uGTReader.cc.

References mps_splice::entry, L1TUtmTriggerMenu::getAlgorithmMap(), edm::glob2reg(), triggerExpression::Data::hasL1T(), edm::is_glob(), triggerExpression::Data::l1tMenu(), m_pattern, m_triggers, match(), and triggerExpression::Data::shouldThrow().

Referenced by L1uGTReader().

43  {
44  if (not data.hasL1T())
45  return;
46 
47  const L1TUtmTriggerMenu & menu = data.l1tMenu();
48 
49  // clear the previous configuration
50  m_triggers.clear();
51 
52  // check if the pattern has is a glob expression, or a single trigger name
53  auto const & triggerMap = menu.getAlgorithmMap();
54  if (not edm::is_glob(m_pattern)) {
55  // no wildcard expression
56  auto entry = triggerMap.find(m_pattern);
57  if (entry != triggerMap.end()) {
58  // single L1 bit
59  m_triggers.push_back( std::make_pair(m_pattern, entry->second.getIndex()) );
60  } else
61  // trigger not found in the current menu
62  if (data.shouldThrow())
63  throw cms::Exception("Configuration") << "requested L1 trigger \"" << m_pattern << "\" does not exist in the current L1 menu";
64  else
65  edm::LogWarning("Configuration") << "requested L1 trigger \"" << m_pattern << "\" does not exist in the current L1 menu";
66  } else {
67  // expand wildcards in the pattern
68  bool match = false;
69  std::regex re(edm::glob2reg(m_pattern));
70  for (auto const & entry: triggerMap)
71  if (std::regex_match(entry.first, re)) {
72  match = true;
73  m_triggers.push_back( std::make_pair(entry.first, entry.second.getIndex()) );
74  }
75 
76  if (not match) {
77  // m_pattern does not match any L1 bits
78  if (data.shouldThrow())
79  throw cms::Exception("Configuration") << "requested pattern \"" << m_pattern << "\" does not match any L1 trigger in the current menu";
80  else
81  edm::LogWarning("Configuration") << "requested pattern \"" << m_pattern << "\" does not match any L1 trigger in the current menu";
82  }
83  }
84 
85 }
bool is_glob(std::string const &pattern)
Definition: RegexMatch.cc:17
std::string glob2reg(std::string const &pattern)
Definition: RegexMatch.cc:19
std::vector< std::pair< std::string, unsigned int > > m_triggers
const std::map< std::string, L1TUtmAlgorithm > & getAlgorithmMap() const
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
bool triggerExpression::L1uGTReader::operator() ( const Data data) const
overridevirtual

Implements triggerExpression::Evaluator.

Definition at line 15 of file TriggerExpressionL1uGTReader.cc.

References triggerExpression::Data::hasL1T(), triggerExpression::Data::l1tResults(), and m_triggers.

Referenced by L1uGTReader().

15  {
16  if (not data.hasL1T())
17  return false;
18 
19  std::vector<bool> const & word = data.l1tResults();
20  if (word.empty())
21  return false;
22 
23  for (auto const & trigger: m_triggers)
24  if (trigger.second < word.size() and word[trigger.second])
25  return true;
26 
27  return false;
28 }
std::vector< std::pair< std::string, unsigned int > > m_triggers
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82

Member Data Documentation

std::string triggerExpression::L1uGTReader::m_pattern
private

Definition at line 25 of file TriggerExpressionL1uGTReader.h.

Referenced by init().

std::vector<std::pair<std::string, unsigned int> > triggerExpression::L1uGTReader::m_triggers
private

Definition at line 26 of file TriggerExpressionL1uGTReader.h.

Referenced by dump(), init(), and operator()().