CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1MuGMTLUT.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // \class L1MuGMTLUT
9 //
10 //
11 // Author :
12 // H. Sakulin HEPHY Vienna
13 //
14 // Migrated to CMSSW:
15 // I. Mikulec
16 //
17 //--------------------------------------------------
18 
19 //---------------
20 // C++ Headers --
21 //---------------
22 
24 #include <boost/algorithm/string.hpp>
25 #include <iostream>
26 #include <fstream>
27 #include <sstream>
28 
30 
32 
33 using namespace std;
34 
36  if (! m_UseLookupFunction ) {
37 
38  // de-allocate vectors
39  // no destuction needed for vector< vector <unsigned> >
40 
41  // for (int i=0;i < m_NLUTS; i++)
42  // m_Contents[i].clear();
43  // m_Contents.clear();
44  }
45 }
46 
47 void L1MuGMTLUT::Init(const char* name, const vector<string>& instances,
48  const vector<port>& in_widths, const vector<port>& out_widths,
49  unsigned vme_addr_width, bool distrRAM)
50 {
51  m_name = name;
52  m_InstNames = instances;
53  m_NLUTS = instances.size();
54 
55  m_Inputs = in_widths;
56  m_TotalInWidth = 0;
57  for (unsigned i=0; i< in_widths.size(); i++) m_TotalInWidth += in_widths[i].second;
58 
59  m_Outputs = out_widths;
60  m_TotalOutWidth = 0;
61  for (unsigned i=0; i< out_widths.size(); i++) m_TotalOutWidth += out_widths[i].second;
62 
63  m_vme_addr_width = vme_addr_width;
64  m_distrRAM = distrRAM;
65 
66  if (m_distrRAM && (m_TotalInWidth != vme_addr_width) ) {
67  edm::LogWarning("AddressMismatch")
68  << "L1MuGMTLUT::Init(): for distributed RAM the GMT (Input) address width "
69  << "has to match the VME address width. Core Generation will not work.";
70  }
71 
72  m_GeneralLUTVersion = L1MuGMTConfig::getVersionLUTs();
73  m_initialized = true;
74 }
75 
76 
77 void L1MuGMTLUT::Save(const char* path) {
78  if (! m_initialized) {
79  edm::LogWarning("LUTNotInitialized") << "L1MuGMTLUT::Save: LUT not initialized. ";
80  return;
81  }
82 
83  m_saveFlag = true;
84 
85  ofstream of(path);
86  of << "// This is a CMS L1 Global Muon Trigger .lut file. " << endl;
87  of << "// " << endl;
88  of << "// It defines a set of look-up-tables(LUTs) of the same type (same inputs and outputs) but" << endl;
89  of << "// with different default contents. For example a certain type of LUT can have different" << endl;
90  of << "// default values for DT for RPC and for CSC muons. " << endl;
91  of << "// " << endl;
92  of << "// NAME gives the name of the LUT. It should match the base name (name without '.lut')" << endl;
93  of << "// of the LUT file." << endl;
94  of << "// When deriving a C++ sub-class the name is used case sensitive." << endl;
95  of << "// In generated VHDL code the name is used in lower case." << endl;
96  of << "// " << endl;
97  of << "// INSTANCES is the list of instances of the LUT with different default values." << endl;
98  of << "// the lists consists of identifiers for each of the instances separated by spaces." << endl;
99  of << "// the identifiers can be made up of characters that are valid in VHDL lables. " << endl;
100  of << "// In the VHDL code they are used to label the different instances." << endl;
101  of << "// " << endl;
102  of << "// In C++ and VHDL the instance of a LUT is selected by an integer index where 0 " << endl;
103  of << "// corresponds to the leftmost identifier. Integer indices are also used in the CONTENTS_XX" << endl;
104  of << "// statements in this file." << endl;
105  of << "// " << endl;
106  of << "// LUT_INPUTS is the (space-separated) list of inputs of the LUT. Each input is specified in the form" << endl;
107  of << "// <input_name>(<number_of_bits>) where <input_name> is the name of the input and" << endl;
108  of << "// <number_of_bits> is the number of bits of the input. <input_name> has to be a valid" << endl;
109  of << "// identifier both in C++ and in VHDL. In C++ it is represented as an unsigned int." << endl;
110  of << "// " << endl;
111  of << "// All LUT inputs together make up the address of the corresponding memory." << endl;
112  of << "// The first input in the list corresponds to the most-significant bits of the address." << endl;
113  of << "// " << endl;
114  of << "// LUT_OUTPUTS is the (space-separated) list of outputs of the LUT. Each output is specified in the form" << endl;
115  of << "// <output_name>(<number_of_bits>) where <output_name> is the name of the output and" << endl;
116  of << "// <number_of_bits> is the number of bits of the output. <output_name> has to be a valid" << endl;
117  of << "// identifier both in C++ and in VHDL. In C++ it is represented as an unsigned int." << endl;
118  of << "// " << endl;
119  of << "// All LUT outputs together make up the data of the corresponding memory." << endl;
120  of << "// The first output in the list corresponds to the most-significant data bits." << endl;
121  of << "// " << endl;
122  of << "// VME_ADDR_WIDTH is the address width of the LUT memory when accessed via VME. When the LUT " << endl;
123  of << "// is implemented as dual-port block RAM, the VME address with can be different " << endl;
124  of << "// from the address width given by the sum of the input widths. It can be larger or" << endl;
125  of << "// smaller by a factor of 2^n. When the LUT is implemented as dual-port distributed RAM," << endl;
126  of << "// the VME address width has to match the input width. " << endl;
127  of << "// " << endl;
128  of << "// DISTRIBUTED_RAM is 1 if the LUT is to be implemented in distributed RAM and 0 for Block RAM " << endl;
129  of << "// Note that for distributed RAM the address width on the GMT side (sum of input widths)" << endl;
130  of << "// has to match the vme_addr_width" << endl;
131  of << "// " << endl;
132  of << "// CONTENTS_XX specifies the default contents of instance with index XX (see INSTANCES)." << endl;
133  of << "// contents are specified as decimal numbers, one number per line." << endl;
134  of << "// " << endl;
135  of << "// Hannes Sakulin / HEPHY Vienna, 2003" << endl;
136  of << "// "<< endl;
137 
138  of << "NAME = " << m_name << endl;
139  of << "INSTANCES =" ;
140  for (unsigned i=0; i<m_InstNames.size(); i++) of << " " << m_InstNames[i];
141  of << endl;
142  of << "LUT_INPUTS = " << PortDecoder(m_Inputs).str() << endl;
143  of << "LUT_OUTPUTS = " << PortDecoder(m_Outputs).str() << endl;
144  of << "VME_ADDR_WIDTH = " << m_vme_addr_width << endl;
145  of << "DISTRIBUTED_RAM = " << (m_distrRAM?"1":"0") << endl;
146  for (int i=0; i<m_NLUTS; i++) {
147  of << "// " << m_InstNames[i] << endl;
148  of << "CONTENTS_" << i << " = ";
149  for (unsigned addr = 0; addr < (unsigned) (1<<m_TotalInWidth); addr ++) {
150  of << LookupPacked (i, addr) << endl;
151  }
152  of << endl;
153  }
154 
155  m_saveFlag = false;
156 
157 }
158 
159 
160 // Rules for file
161 //
162 // NAME = VALUE1 [VALUE2 [...]]
163 // All header variables have to be set before first contents variable
164 // comments start with "//" and go up to end of line
165 //
166 // when writing back, comments will be save first
167 
168 
169 //--------------------------------------------------------------------------------
170 
171 void L1MuGMTLUT::Set (int idx, unsigned address, unsigned value) {
172  if (! m_initialized) {
173  edm::LogWarning("LUTNotInitialized") << "L1MuGMTLUT::Set: LUT not initialized. ";
174  return;
175  }
176 
177  if ( idx >= m_NLUTS ) {
178  edm::LogWarning("LUTRangeViolation") << "L1MuGMTLUT::Set: LUT index exceeds range (0 to " << ( m_NLUTS -1 ) << ").";
179  return;
180  }
181  if ( address >= (unsigned)(1 << m_TotalInWidth) ) {
182  edm::LogWarning("LUTRangeViolation") << "Error in L1MuGMTLUT::Set: LUT input exceeds range (0 to " << ( (1 << m_TotalInWidth) -1 ) << ").";
183  return;
184  }
185  if ( value >= (unsigned)(1 << m_TotalOutWidth) ) {
186  edm::LogWarning("LUTRangeViolation") << "Error in L1MuGMTLUT::Set: LUT output exceeds range (0 to " << ( (1 << m_TotalOutWidth) -1 ) << ")." ;
187  return;
188  }
189  m_Contents[idx][address] = value;
190 }
191 
192 
193 
194 void L1MuGMTLUT::Load(const char* path) {
195  string lf_name("");
196  vector <string> lf_InstNames;
197  vector <port> lf_Inputs;
198  vector <port> lf_Outputs;
199  unsigned lf_vme_addr_width=0;
200  bool lf_distrRAM=false;
201  vector<string> lf_comments;
202 
203  ifstream in (path);
204  const int sz=1000; char buf[sz];
205 
206 
207  // read header
208 
209  while ( in.getline(buf, sz) ) {
210  string line(buf);
212  if ( (i=line.find("//")) != string::npos) {
213  lf_comments.push_back( line.substr(i) ); // save comments
214  line.erase(i); // and strip
215  }
216  L1MuGMTLUTHelpers::Tokenizer tok("=", line);
217  if (tok.size() == 2) {
218  L1MuGMTLUTHelpers::replace(tok[0], " ","", false); // skip spaces
219  L1MuGMTLUTHelpers::replace(tok[0], "\t","", false); // skip tabs
220 
221  L1MuGMTLUTHelpers::replace(tok[1], "\t", " ", false); // convert tabs to spaces
222  L1MuGMTLUTHelpers::replace(tok[1], " ", " ", true); // skip multiple spaces
223  tok[1].erase(0, tok[1].find_first_not_of(" ")); // skip leading spaces
224  tok[1].erase(tok[1].find_last_not_of(" ")+1); // skip trailing spaces
225 
226  if (tok[0] == "NAME") lf_name = tok[1];
227  else if (tok[0] == "INSTANCES") { lf_InstNames = L1MuGMTLUTHelpers::Tokenizer(" ",tok[1]); }
228  else if (tok[0] == "LUT_INPUTS") lf_Inputs = PortDecoder(tok[1]);
229  else if (tok[0] == "LUT_OUTPUTS") lf_Outputs = PortDecoder(tok[1]);
230  else if (tok[0] == "VME_ADDR_WIDTH") lf_vme_addr_width = atoi(tok[1].c_str());
231  else if (tok[0] == "DISTRIBUTED_RAM") lf_distrRAM = ( atoi(tok[1].c_str()) == 1 );
232  }
233  if (tok[0].find("CONTENTS") != string::npos) break;
234  }
235 
236  if (!m_initialized) { // then initialize
237  Init(lf_name.c_str(), lf_InstNames, lf_Inputs, lf_Outputs, lf_vme_addr_width, lf_distrRAM);
238  }
239  else { // verify compatibility
240  if (m_name != lf_name ||
241  m_InstNames != lf_InstNames ||
242  m_Inputs != lf_Inputs ||
243  m_Outputs != lf_Outputs ||
244  m_vme_addr_width != lf_vme_addr_width ||
245  m_distrRAM != lf_distrRAM) {
246  edm::LogWarning("LUTParmasMismatch")
247  << "L1MuGMTLUT::Load: error: parameters in file do not match configuration of LUT. Load failed.";
248  return;
249  }
250  }
251 
252  if (m_UseLookupFunction) {
253  // allocate vectors
254  m_Contents.resize( m_NLUTS );
255  for (int i=0;i < m_NLUTS; i++)
256  m_Contents[i].resize( 1 << m_TotalInWidth );
257 
258  // switch to table mode
259  m_UseLookupFunction = false;
260  }
261 
262  // continue to read contents (first line should be in buf)
263  int maxrows = 1 << m_TotalInWidth;
264  int row = 0;
265  int current_index = -1;
266  do {
267  string line(buf);
269  if ( (i=line.find("//")) != string::npos) line.erase(i); // strip comments
270  L1MuGMTLUTHelpers::Tokenizer tok("=", line);
271 
272  if (tok.size() == 2 && tok[0].find("CONTENTS") != string::npos) {
273  L1MuGMTLUTHelpers::Tokenizer tok1("_",tok[0]);
274  if (tok1.size() !=2) {
275  edm::LogWarning("LUTParsingProblem") << "L1MuGMTLUT::Load: error parsing contents tag " << tok[0] << ".";
276  break;
277  }
278 
279  istringstream is(tok1[1].c_str());
280  int newindex;
281  is >> newindex;
282  if (newindex != current_index+1)
283  edm::LogWarning("LUTParsingProblem") << "L1MuGMTLUT::Load: warning: LUTS in LUT file are not in order.";
284 
285  if (newindex > m_NLUTS-1) {
286  edm::LogWarning("LUTParsingProblem") << "L1MuGMTLUT::Load: warning: LUT file contains LUT with too high index ("
287  << tok[0]
288  << "). max = " << m_NLUTS << " skipping.";
289  newindex = -1;
290  }
291  current_index = newindex;
292 
293  if (row != 0) {
294  if ( row < maxrows )
295  edm::LogWarning("LUTParsingProblem") << "L1MuGMTLUT::Load: warning: LUT file only contains part of LUT contents.";
296  row = 0;
297  }
298  istringstream is1(tok[1].c_str());
299  unsigned value;
300  if (is1 >> value) {
301  if (current_index!=-1)
302  Set (current_index, row++, value);
303  }
304  }
305  else {
306  istringstream is1(line.c_str());
307  unsigned value;
308  if (is1 >> value) {
309  if (row < maxrows) {
310  if (current_index!=-1)
311  Set (current_index, row++, value);
312  }
313  else
314  edm::LogWarning("LUTParsingProblem")
315  << "L1MuGMTLUT::Load: warning: LUT file only contains LUT with too many entries. skipping.";
316  }
317  }
318  } while ( in.getline(buf, sz) );
319 }
320 
321 //--------------------------------------------------------------------------------
322 // Generate a SubClass .h file
323 //
324 // to be used manually during code development
325 
326 void L1MuGMTLUT::MakeSubClass(const char* fname, const char* template_file_h,
327  const char* template_file_cc) {
328 
329  // prepare parts
330  string ins_name (m_name);
331  string ins_name_upper = boost::to_upper_copy(ins_name);
332  string ins_instance_string;
333  string ins_instances_enum;
334  for (unsigned i=0; i<m_InstNames.size(); i++) {
335  if (i!=0) ins_instance_string += ' ';
336  ins_instance_string += m_InstNames[i];
337 
338  if (i!=0) ins_instances_enum += ", ";
339  ins_instances_enum += m_InstNames[i];
340  }
341  char ins_vme[100];
342  sprintf (ins_vme, "%d", m_vme_addr_width);
343 
344  char ins_distr_RAM[10];
345  sprintf (ins_distr_RAM, "%s", m_distrRAM?"true":"false");
346 
347 
348  string ins_input_decl_list, ins_input_list, ins_input_addr_list;
349  for (unsigned i=0; i<m_Inputs.size(); i++) {
350  ins_input_decl_list += string(", unsigned ") + m_Inputs[i].first;
351  ins_input_list += string(", ") + m_Inputs[i].first;
352  char tmp[100]; sprintf (tmp, " ,addr[%d]", i);
353  ins_input_addr_list += string(tmp);
354  }
355 
356  // string ins_lookup_functions;
357  ostringstream os;
358  for (unsigned i=0; i<m_Outputs.size(); i++) {
359  os << " /// specific lookup function for " << m_Outputs[i].first << endl;
360  os << " unsigned SpecificLookup_" << m_Outputs[i].first << " (int idx" << ins_input_decl_list << ") const {" << endl;
361  os << " vector<unsigned> addr(" << m_Inputs.size() << ");" << endl;
362  for (unsigned j=0; j< m_Inputs.size(); j++) {
363  os << " addr[" << j << "] = " << m_Inputs[j].first << ";" << endl;
364  }
365  os << " return Lookup(idx, addr) [" << i << "];" << endl;
366  os << " };" << endl << endl;
367  }
368  os << " /// specific lookup function for entire output field" << endl;
369  os << " unsigned SpecificLookup (int idx" << ins_input_decl_list << ") const {" << endl;
370  os << " vector<unsigned> addr(" << m_Inputs.size() << ");" << endl;
371  for (unsigned j=0; j< m_Inputs.size(); j++) {
372  os << " addr[" << j << "] = " << m_Inputs[j].first << ";" << endl;
373  }
374  os << " return LookupPacked(idx, addr);" << endl;
375  os << " };" << endl << endl;
376 
377  os << ends;
378  string ins_lookup_functions = os.str();
379 
380  // substitute in .h file
381  string outfn (fname);
382  if (outfn.size() == 0) outfn = string("../interface/L1MuGMT") + m_name + string("LUT.h");
383  ifstream of_check(outfn.c_str());
384  if (! of_check.good() ) {
385  ofstream of(outfn.c_str());
386 
387 
388  ifstream in(template_file_h);
389  const int sz=1000; char buf[sz];
390 
391  while ( in.getline(buf, sz) ) {
392  string line(buf);
393 
394  L1MuGMTLUTHelpers::replace(line, "###insert_name_upper###", ins_name_upper, false);
395  L1MuGMTLUTHelpers::replace(line, "###insert_name###", ins_name, false);
396  L1MuGMTLUTHelpers::replace(line, "###insert_instance_string###", ins_instance_string, false);
397  L1MuGMTLUTHelpers::replace(line, "###insert_instances_enum###", ins_instances_enum, false);
398  L1MuGMTLUTHelpers::replace(line, "###insert_inputs_string###", string(PortDecoder(m_Inputs).str()), false);
399  L1MuGMTLUTHelpers::replace(line, "###insert_outputs_string###", string(PortDecoder(m_Outputs).str()), false);
400  L1MuGMTLUTHelpers::replace(line, "###insert_vme_input_width###", string(ins_vme), false);
401  L1MuGMTLUTHelpers::replace(line, "###insert_distrRAM###", string(ins_distr_RAM), false);
402  L1MuGMTLUTHelpers::replace(line, "###insert_input_decl_list###", ins_input_decl_list, false);
403  L1MuGMTLUTHelpers::replace(line, "###insert_input_list###", ins_input_list, false);
404  L1MuGMTLUTHelpers::replace(line, "###insert_input_addr_list###", ins_input_addr_list, false);
405  L1MuGMTLUTHelpers::replace(line, "###insert_lookup_functions###", ins_lookup_functions, false);
406  of << line << endl;
407  }
408  }
409 
410  // substitute in .cc file
411  string outfn_cc (fname);
412  if (outfn_cc.size() == 0) outfn_cc = string("../interface/L1MuGMT") + m_name + string("LUT.cc");
413 
414  ifstream of_cc_check( outfn_cc.c_str() );
415  if (! of_cc_check.good() ) {
416  ofstream of_cc(outfn_cc.c_str());
417 
418 
419  ifstream in_cc(template_file_cc);
420  const int sz=1000; char buf[sz];
421 
422  while ( in_cc.getline(buf, sz) ) {
423  string line(buf);
424 
425  L1MuGMTLUTHelpers::replace(line, "###insert_name_upper###", ins_name_upper, false);
426  L1MuGMTLUTHelpers::replace(line, "###insert_name###", ins_name, false);
427  L1MuGMTLUTHelpers::replace(line, "###insert_instance_string###", ins_instance_string, false);
428  L1MuGMTLUTHelpers::replace(line, "###insert_instances_enum###", ins_instances_enum, false);
429  L1MuGMTLUTHelpers::replace(line, "###insert_inputs_string###", string(PortDecoder(m_Inputs).str()), false);
430  L1MuGMTLUTHelpers::replace(line, "###insert_outputs_string###", string(PortDecoder(m_Outputs).str()), false);
431  L1MuGMTLUTHelpers::replace(line, "###insert_vme_input_width###", string(ins_vme), false);
432  L1MuGMTLUTHelpers::replace(line, "###insert_distrRAM###", string(ins_distr_RAM), false);
433  L1MuGMTLUTHelpers::replace(line, "###insert_input_decl_list###", ins_input_decl_list, false);
434  L1MuGMTLUTHelpers::replace(line, "###insert_input_list###", ins_input_list, false);
435  L1MuGMTLUTHelpers::replace(line, "###insert_input_addr_list###", ins_input_addr_list, false);
436  L1MuGMTLUTHelpers::replace(line, "###insert_lookup_functions###", ins_lookup_functions, false);
437  of_cc << line << endl;
438  }
439  }
440 }
441 
442 
int i
Definition: DBlmapReader.cc:9
virtual ~L1MuGMTLUT()
destructor
Definition: L1MuGMTLUT.cc:35
void Set(int idx, unsigned address, unsigned value)
set with single address and value
Definition: L1MuGMTLUT.cc:171
void MakeSubClass(const char *fname="", const char *template_file_h="../interface/L1MuGMTLUT_SubClass.h_template", const char *template_file_cc="../interface/L1MuGMTLUT_SubClass.cc_template")
Add Generate SubClass method.
Definition: L1MuGMTLUT.cc:326
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
uint16_t size_type
U second(std::pair< T, U > const &p)
static unsigned getVersionLUTs()
void Save(const char *path)
save to LUT file
Definition: L1MuGMTLUT.cc:77
int j
Definition: DBlmapReader.cc:9
void Load(const char *path)
I/O functions.
Definition: L1MuGMTLUT.cc:194
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
string fname
main script
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
static int replace(std::string &input, const std::string &gone, const std::string &it, bool multiple)
void Init(const char *name, const std::vector< std::string > &instances, const std::vector< port > &in_widths, const std::vector< port > &out_widths, unsigned vme_addr_width=0, bool distrRAM=false)
Initialize the LUT.
Definition: L1MuGMTLUT.cc:47