CMS 3D CMS Logo

AlgorithmEvaluation.cc
Go to the documentation of this file.
1 
15 // this class header
17 
18 // system include files
19 #include <string>
20 
21 #include <stack>
22 #include <queue>
23 #include <vector>
24 
25 #include <iostream>
26 #include <iomanip>
27 
28 #include <boost/algorithm/string.hpp>
29 #include <ext/hash_map>
30 
31 // user include files
32 
33 
34 //
36 
38 
41 
42 
45  m_algoResult(false),
46  m_logicalExpression(alg.algoLogicalExpression()),
47  m_rpnVector(alg.algoRpnVector()){
48 
49  // the rest is properly initialized by default
50 
51 }
52 
53 
54 // methods
55 
58  const std::vector<ConditionEvaluationMap>& conditionResultMaps) {
59 
60  // set result to false if there is no expression
61  if (m_rpnVector.empty() ) {
62  m_algoResult = false;
63 
64  // it should never be happen
65  throw cms::Exception("FailModule")
66  << "\nEmpty RPN vector for the logical expression = "
68  << std::endl;
69 
70  }
71 
72  // reserve memory
73  int rpnVectorSize = m_rpnVector.size();
74 
75  m_algoCombinationVector.reserve(rpnVectorSize);
76  m_operandTokenVector.reserve(rpnVectorSize);
77 
78  // stack containing temporary results
79  std::stack<bool, std::vector<bool> > resultStack;
80  bool b1, b2;
81 
82  int opNumber = 0;
83 
84  for (RpnVector::const_iterator it = m_rpnVector.begin(); it != m_rpnVector.end(); it++) {
85 
86  //LogTrace("L1TGlobal")
87  //<< "\nit->operation = " << it->operation
88  //<< "\nit->operand = '" << it->operand << "'\n"
89  //<< std::endl;
90 
91  switch (it->operation) {
92 
94 
95  CItEvalMap itCond = (conditionResultMaps.at(chipNumber)).find(it->operand);
96  if (itCond != (conditionResultMaps[chipNumber]).end()) {
97 
98  if (nullptr == itCond->second) {
99  // it should never be happen, only valid conditions are in the maps
100  throw cms::Exception("FailModule") << "\nCondition "
101  << (it->operand)
102  << " NULL pointer found in condition map"
103  << std::endl;
104  }
105 
106  //
107  bool condResult = (itCond->second)->condLastResult();
108 
109  resultStack.push(condResult);
110 
111  // only conditions are added to /counted in m_operandTokenVector
112  // opNumber is the index of the condition in the logical expression
113  OperandToken opToken;
114  opToken.tokenName = it->operand;
115  opToken.tokenNumber = opNumber;
116  opToken.tokenResult = condResult;
117 
118  m_operandTokenVector.push_back(opToken);
119  opNumber++;
120 
121  //
122  CombinationsInCond const & combInCondition = (itCond->second)->getCombinationsInCond();
123  m_algoCombinationVector.push_back(combInCondition);
124 
125  }
126  else {
127 
128  // it should never be happen, all conditions are in the maps
129  throw cms::Exception("FailModule")
130  << "\nCondition " << (it->operand) << " not found in condition map"
131  << std::endl;
132 
133  }
134 
135  }
136 
137  break;
139  b1 = resultStack.top();
140  resultStack.pop(); // pop the top
141  resultStack.push(!b1); // and push the result
142  }
143 
144  break;
146  b1 = resultStack.top();
147  resultStack.pop();
148  b2 = resultStack.top();
149  resultStack.pop();
150  resultStack.push(b1 || b2);
151  }
152 
153  break;
155  b1 = resultStack.top();
156  resultStack.pop();
157  b2 = resultStack.top();
158  resultStack.pop();
159  resultStack.push(b1 && b2);
160  }
161 
162  break;
164  b1 = resultStack.top();
165  resultStack.pop();
166  b2 = resultStack.top();
167  resultStack.pop();
168  resultStack.push(b1 ^ b2);
169  }
170 
171  break;
172  default: {
173  // should not arrive here
174  }
175 
176  break;
177  }
178 
179  }
180 
181  // get the result in the top of the stack
182  m_algoResult = resultStack.top();
183 }
184 
185 // print algorithm evaluation
186 void l1t::AlgorithmEvaluation::print(std::ostream& myCout) const {
187 
188  myCout << std::endl;
189 
190  myCout << " Algorithm result: " << m_algoResult << std::endl;
191 
192  myCout << " CombinationVector size: " << m_algoCombinationVector.size() << std::endl;
193 
194  int operandTokenVectorSize = m_operandTokenVector.size();
195 
196  myCout << " Operand token vector size: " << operandTokenVectorSize;
197 
198  if (operandTokenVectorSize == 0) {
199  myCout << " - not properly initialized! " << std::endl;
200  }
201  else {
202  myCout << std::endl;
203 
204  for (int i = 0; i < operandTokenVectorSize; ++i) {
205 
206  myCout << " " << std::setw(5) << (m_operandTokenVector[i]).tokenNumber << "\t"
207  << std::setw(25) << (m_operandTokenVector[i]).tokenName << "\t"
208  << (m_operandTokenVector[i]).tokenResult
209  << std::endl;
210 
211  }
212 
213  }
214 
215  myCout << std::endl;
216 }
217 
ConditionEvaluationMap::const_iterator CItEvalMap
void print(std::ostream &myCout) const
std::vector< CombinationsInCond > m_algoCombinationVector
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
std::string const & m_logicalExpression
AlgorithmEvaluation(const GlobalAlgorithm &)
constructor
void evaluateAlgorithm(const int chipNumber, const std::vector< ConditionEvaluationMap > &)
evaluate an algorithm
std::vector< SingleCombInCond > CombinationsInCond
all the object combinations evaluated to true in the condition
bool m_algoResult
algorithm result
std::vector< OperandToken > m_operandTokenVector