CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWL1TriggerTableView.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWL1TriggerTableView
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author:
10 // Created: Tue Jan 25 16:02:11 CET 2011
11 //
12 
13 #include <boost/regex.hpp>
16 
22 
25 
26 
28  : FWTriggerTableView(iParent, FWViewType::kTableL1)
29 {
30  m_columns[0].title = "Algorithm Name";
31  m_columns.push_back( Column( "Result" ) );
32  m_columns.push_back( Column( "Bit Number" ) );
33  m_columns.push_back( Column( "Prescale" ) );
34 
35  dataChanged();
36 }
37 
38 void
40 {
43 
44  try
45  {
46  // FIXME: Replace magic strings with configurable ones
47  triggerMenuLite.getByLabel( event->getRun(), "l1GtTriggerMenuLite", "", "" );
48  triggerRecord.getByLabel( *event, "gtDigis", "", "" );
49  }
50  catch( cms::Exception& )
51  {
52  fwLog( fwlog::kWarning ) << "FWL1TriggerTableView: no L1Trigger menu is available." << std::endl;
53  return;
54  }
55 
56  if( triggerMenuLite.isValid() && triggerRecord.isValid() )
57  {
58  const L1GtTriggerMenuLite::L1TriggerMap& algorithmMap = triggerMenuLite->gtAlgorithmMap();
59 
60  int pfIndexTechTrig = -1;
61  int pfIndexAlgoTrig = -1;
62 
63  boost::regex filter(m_regex.value());
64 
66  std::vector<std::vector<int> > prescaleFactorsAlgoTrig = triggerMenuLite->gtPrescaleFactorsAlgoTrig();
67  std::vector<std::vector<int> > prescaleFactorsTechTrig = triggerMenuLite->gtPrescaleFactorsTechTrig();
68  pfIndexAlgoTrig = ( triggerRecord->gtFdlWord()).gtPrescaleFactorIndexAlgo();
69  pfIndexTechTrig = ( triggerRecord->gtFdlWord()).gtPrescaleFactorIndexTech();
70 
71  int pfIndexTechTrigValidSize = static_cast<int>(prescaleFactorsTechTrig.size());
72  if( pfIndexTechTrigValidSize <= pfIndexTechTrig )
73  fwLog( fwlog::kError) << Form( "FWL1TriggerTableView: Can't get Technical Trigger pre-scale factors. Index [%d] larger that table size [%d]\n",
74  pfIndexTechTrig, (int)prescaleFactorsTechTrig.size());
75  int pfIndexAlgoTrigValidSize = static_cast<int>(prescaleFactorsAlgoTrig.size());
76  if( pfIndexAlgoTrigValidSize <= pfIndexAlgoTrig )
77  fwLog( fwlog::kError) << Form( "FWL1TriggerTableView: Can't get L1 Algo pre-scale factors. Index [%d] larger that table size [%d]\n",
78  pfIndexAlgoTrig, (int)prescaleFactorsAlgoTrig.size());
79 
80  const DecisionWord dWord = triggerRecord->decisionWord();
81  for( L1GtTriggerMenuLite::CItL1Trig itTrig = algorithmMap.begin(), itTrigEnd = algorithmMap.end();
82  itTrig != itTrigEnd; ++itTrig )
83  {
84  const unsigned int bitNumber = itTrig->first;
85  const std::string& aName = itTrig->second;
86  int errorCode = 0;
87  const bool result = triggerMenuLite->gtTriggerResult( aName, dWord, errorCode );
88 
89  if ( !boost::regex_search(aName, filter) ) continue;
90 
91  m_columns.at(0).values.push_back( aName );
92  m_columns.at(1).values.push_back( Form( "%d", result ));
93  m_columns.at(2).values.push_back( Form( "%d", bitNumber ));
94 
95  if(( pfIndexAlgoTrig < pfIndexAlgoTrigValidSize )
96  && static_cast<unsigned int>(prescaleFactorsAlgoTrig.at(pfIndexAlgoTrig).size()) > bitNumber )
97  {
98  m_columns.at(3).values.push_back( Form( "%d", prescaleFactorsAlgoTrig.at( pfIndexAlgoTrig ).at( bitNumber )));
99  }
100  else
101  m_columns.at(3).values.push_back( "invalid");
102  }
103 
104  const static std::string kTechTriggerName = "TechTrigger";
105  const TechnicalTriggerWord ttWord = triggerRecord->technicalTriggerWord();
106 
107  int tBitNumber = 0;
108  int tBitResult = 0;
109  if(boost::regex_search(kTechTriggerName, filter))
110  {
111  for( TechnicalTriggerWord::const_iterator tBitIt = ttWord.begin(), tBitEnd = ttWord.end();
112  tBitIt != tBitEnd; ++tBitIt, ++tBitNumber )
113  {
114  if( *tBitIt )
115  tBitResult = 1;
116  else
117  tBitResult = 0;
118 
119  m_columns.at(0).values.push_back( kTechTriggerName );
120  m_columns.at(1).values.push_back( Form( "%d", tBitResult ));
121  m_columns.at(2).values.push_back( Form( "%d", tBitNumber ));
122 
123  if (( pfIndexTechTrig < pfIndexTechTrigValidSize )
124  && static_cast<int>(prescaleFactorsTechTrig.at(pfIndexTechTrig).size()) > tBitNumber )
125  {
126  m_columns.at(3).values.push_back( Form( "%d", prescaleFactorsTechTrig.at( pfIndexTechTrig ).at( tBitNumber )));
127  }
128  else
129  m_columns.at(3).values.push_back( Form( "invalid" ));
130  }
131  }
132  } // trigger valid
133  else
134  {
135  m_columns.at(0).values.push_back( "No L1Trigger menu available." );
136  m_columns.at(1).values.push_back( " " );
137  m_columns.at(2).values.push_back( " " );
138  m_columns.at(3).values.push_back( " " );
139  }
140 }
std::vector< Column > m_columns
const TechnicalTriggerWord & technicalTriggerWord(int bxInEventValue) const
bool isValid() const
Definition: Handle.h:64
FWStringParameter m_regex
const std::vector< std::vector< int > > & gtPrescaleFactorsAlgoTrig() const
get the prescale factors by reference / set the prescale factors
fwlite::Run const & getRun() const
Definition: Event.cc:543
std::map< unsigned int, std::string > L1TriggerMap
map containing the physics algorithms or the technical triggers
void getByLabel(const P &iP, const char *iModuleLabel, const char *iProductInstanceLabel=0, const char *iProcessLabel=0)
Definition: Handle.h:94
std::vector< bool > DecisionWord
typedefs
tuple result
Definition: query.py:137
std::vector< bool > TechnicalTriggerWord
technical trigger bits (64 bits)
const bool gtTriggerResult(const std::string &trigName, const std::vector< bool > &decWord, int &errorCode) const
const std::vector< std::vector< int > > & gtPrescaleFactorsTechTrig() const
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
const DecisionWord & decisionWord(int bxInEventValue) const
L1TriggerMap::const_iterator CItL1Trig
iterators through map containing the physics algorithms or the technical triggers ...
const L1GtFdlWord gtFdlWord(int bxInEventValue) const
get / set FDL word (record) in the GT readout record
#define fwLog(_level_)
Definition: fwLog.h:50
FWL1TriggerTableView(TEveWindowSlot *)
const L1TriggerMap & gtAlgorithmMap() const
get / set the algorithm map (by name)
virtual void fillTable(fwlite::Event *event)