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 // $Id: FWL1TriggerTableView.cc,v 1.19 2011/10/19 07:13:35 yana Exp $
12 //
13 
14 #include <boost/regex.hpp>
17 
23 
26 
27 
29  : FWTriggerTableView(iParent, FWViewType::kTableL1)
30 {
31  m_columns[0].title = "Algorithm Name";
32  m_columns.push_back( Column( "Result" ) );
33  m_columns.push_back( Column( "Bit Number" ) );
34  m_columns.push_back( Column( "Prescale" ) );
35 
36  dataChanged();
37 }
38 
39 void
41 {
44 
45  try
46  {
47  // FIXME: Replace magic strings with configurable ones
48  triggerMenuLite.getByLabel( event->getRun(), "l1GtTriggerMenuLite", "", "" );
49  triggerRecord.getByLabel( *event, "gtDigis", "", "" );
50  }
51  catch( cms::Exception& )
52  {
53  fwLog( fwlog::kWarning ) << "FWL1TriggerTableView: no L1Trigger menu is available." << std::endl;
54  return;
55  }
56 
57  if( triggerMenuLite.isValid() && triggerRecord.isValid() )
58  {
59  const L1GtTriggerMenuLite::L1TriggerMap& algorithmMap = triggerMenuLite->gtAlgorithmMap();
60 
61  int pfIndexTechTrig = -1;
62  int pfIndexAlgoTrig = -1;
63 
64  boost::regex filter(m_regex.value());
65 
67  std::vector<std::vector<int> > prescaleFactorsAlgoTrig = triggerMenuLite->gtPrescaleFactorsAlgoTrig();
68  std::vector<std::vector<int> > prescaleFactorsTechTrig = triggerMenuLite->gtPrescaleFactorsTechTrig();
69  pfIndexAlgoTrig = ( triggerRecord->gtFdlWord()).gtPrescaleFactorIndexAlgo();
70  pfIndexTechTrig = ( triggerRecord->gtFdlWord()).gtPrescaleFactorIndexTech();
71 
72  int pfIndexTechTrigValidSize = static_cast<int>(prescaleFactorsTechTrig.size());
73  if( pfIndexTechTrigValidSize <= pfIndexTechTrig )
74  fwLog( fwlog::kError) << Form( "FWL1TriggerTableView: Can't get Technical Trigger pre-scale factors. Index [%d] larger that table size [%d]\n",
75  pfIndexTechTrig, (int)prescaleFactorsTechTrig.size());
76  int pfIndexAlgoTrigValidSize = static_cast<int>(prescaleFactorsAlgoTrig.size());
77  if( pfIndexAlgoTrigValidSize <= pfIndexAlgoTrig )
78  fwLog( fwlog::kError) << Form( "FWL1TriggerTableView: Can't get L1 Algo pre-scale factors. Index [%d] larger that table size [%d]\n",
79  pfIndexAlgoTrig, (int)prescaleFactorsAlgoTrig.size());
80 
81  const DecisionWord dWord = triggerRecord->decisionWord();
82  for( L1GtTriggerMenuLite::CItL1Trig itTrig = algorithmMap.begin(), itTrigEnd = algorithmMap.end();
83  itTrig != itTrigEnd; ++itTrig )
84  {
85  const unsigned int bitNumber = itTrig->first;
86  const std::string& aName = itTrig->second;
87  int errorCode = 0;
88  const bool result = triggerMenuLite->gtTriggerResult( aName, dWord, errorCode );
89 
90  if ( !boost::regex_search(aName, filter) ) continue;
91 
92  m_columns.at(0).values.push_back( aName );
93  m_columns.at(1).values.push_back( Form( "%d", result ));
94  m_columns.at(2).values.push_back( Form( "%d", bitNumber ));
95 
96  if(( pfIndexAlgoTrig < pfIndexAlgoTrigValidSize )
97  && static_cast<unsigned int>(prescaleFactorsAlgoTrig.at(pfIndexAlgoTrig).size()) > bitNumber )
98  {
99  m_columns.at(3).values.push_back( Form( "%d", prescaleFactorsAlgoTrig.at( pfIndexAlgoTrig ).at( bitNumber )));
100  }
101  else
102  m_columns.at(3).values.push_back( "invalid");
103  }
104 
105  const static std::string kTechTriggerName = "TechTrigger";
106  const TechnicalTriggerWord ttWord = triggerRecord->technicalTriggerWord();
107 
108  int tBitNumber = 0;
109  int tBitResult = 0;
110  if(boost::regex_search(kTechTriggerName, filter))
111  {
112  for( TechnicalTriggerWord::const_iterator tBitIt = ttWord.begin(), tBitEnd = ttWord.end();
113  tBitIt != tBitEnd; ++tBitIt, ++tBitNumber )
114  {
115  if( *tBitIt )
116  tBitResult = 1;
117  else
118  tBitResult = 0;
119 
120  m_columns.at(0).values.push_back( kTechTriggerName );
121  m_columns.at(1).values.push_back( Form( "%d", tBitResult ));
122  m_columns.at(2).values.push_back( Form( "%d", tBitNumber ));
123 
124  if (( pfIndexTechTrig < pfIndexTechTrigValidSize )
125  && static_cast<int>(prescaleFactorsTechTrig.at(pfIndexTechTrig).size()) > tBitNumber )
126  {
127  m_columns.at(3).values.push_back( Form( "%d", prescaleFactorsTechTrig.at( pfIndexTechTrig ).at( tBitNumber )));
128  }
129  else
130  m_columns.at(3).values.push_back( Form( "invalid" ));
131  }
132  }
133  } // trigger valid
134  else
135  {
136  m_columns.at(0).values.push_back( "No L1Trigger menu available." );
137  m_columns.at(1).values.push_back( " " );
138  m_columns.at(2).values.push_back( " " );
139  m_columns.at(3).values.push_back( " " );
140  }
141 }
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:507
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:51
FWL1TriggerTableView(TEveWindowSlot *)
const L1TriggerMap & gtAlgorithmMap() const
get / set the algorithm map (by name)
virtual void fillTable(fwlite::Event *event)