CMS 3D CMS Logo

CSCTFConfigProducer.cc
Go to the documentation of this file.
3 
4 #include <cerrno>
5 #include <cstdio>
6 #include <fstream>
7 #include <iostream>
8 #include <memory>
9 
11  const char* name[12] = {"registersSP1",
12  "registersSP2",
13  "registersSP3",
14  "registersSP4",
15  "registersSP5",
16  "registersSP6",
17  "registersSP7",
18  "registersSP8",
19  "registersSP9",
20  "registersSP10",
21  "registersSP11",
22  "registersSP12"};
23 
24  for (int sp = 0; sp < 12; sp++) {
25  std::vector<std::string> regs = pset.getParameter<std::vector<std::string> >(name[sp]);
26  for (std::vector<std::string>::const_iterator line = regs.begin(); line != regs.end(); line++)
27  registers[sp] += *line + "\n";
28  }
29 
30  alignment = pset.getParameter<std::vector<double> >("alignment");
31  ptLUT_path = pset.getParameter<std::string>("ptLUT_path");
35 }
36 
37 std::unique_ptr<L1MuCSCTFConfiguration> CSCTFConfigProducer::produceL1MuCSCTFConfigurationRcd(
38  const L1MuCSCTFConfigurationRcd& iRecord) {
39  edm::LogInfo("L1-O2O: CSCTFConfigProducer") << "Producing "
40  << " L1MuCSCTFConfiguration from PSET";
41 
42  std::unique_ptr<L1MuCSCTFConfiguration> config = std::make_unique<L1MuCSCTFConfiguration>(registers);
43  return config;
44 }
45 
46 std::unique_ptr<L1MuCSCTFAlignment> CSCTFConfigProducer::produceL1MuCSCTFAlignmentRcd(
47  const L1MuCSCTFAlignmentRcd& iRecord) {
48  edm::LogInfo("L1-O2O: CSCTFConfigProducer") << "Producing "
49  << " L1MuCSCTFAlignment from PSET";
50 
51  std::unique_ptr<L1MuCSCTFAlignment> al = std::make_unique<L1MuCSCTFAlignment>(alignment);
52  return al;
53 }
54 
55 std::unique_ptr<L1MuCSCPtLut> CSCTFConfigProducer::produceL1MuCSCPtLutRcd(const L1MuCSCPtLutRcd& iRecord) {
56  edm::LogInfo("L1-O2O: CSCTFConfigProducer") << "Producing "
57  << " L1MuCSCPtLut from PSET";
58 
59  std::unique_ptr<L1MuCSCPtLut> pt_lut = std::make_unique<L1MuCSCPtLut>();
60 
61  if (ptLUT_path.length()) {
62  readLUT(ptLUT_path, (unsigned short*)pt_lut->pt_lut, 1 << 21); //CSCBitWidths::kPtAddressWidth
63  } else {
64  throw cms::Exception("Undefined pT LUT")
65  << "CSCTFConfigProducer is unable to generate LUTs on the fly.\n"
66  "Specify full LUT file names or just avoid using CSCTFConfigProducer by uncommenting PTLUT "
67  "parameter sets in L1Trigger/CSCTrackFinder configuration."
68  << std::endl;
69  }
70  return pt_lut;
71 }
72 
73 void CSCTFConfigProducer::readLUT(std::string path, unsigned short* lut, unsigned long length) {
74  // Reading
75  if (path.find(".bin") != std::string::npos) { // Binary format
76  std::ifstream file(path.c_str(), std::ios::binary);
77  file.read((char*)lut, length * sizeof(unsigned short));
78  if (file.fail())
79  throw cms::Exception("Reading error") << "CSCTFConfigProducer cannot read " << length << " words from " << path
80  << " (errno=" << errno << ")" << std::endl;
81  if ((unsigned int)file.gcount() != length * sizeof(unsigned short))
82  throw cms::Exception("Incorrect LUT size")
83  << "CSCTFConfigProducer read " << (file.gcount() / sizeof(unsigned short)) << " words from " << path
84  << " instead of " << length << " (errno=" << errno << ")" << std::endl;
85  file.close();
86  } else {
87  std::ifstream file(path.c_str());
88  if (file.fail())
89  throw cms::Exception("Cannot open file")
90  << "CSCTFConfigProducer cannot open " << path << " (errno=" << errno << ")" << std::endl;
91  unsigned int address = 0;
92  for (address = 0; !file.eof() && address < length; address++)
93  file >> lut[address]; // Warning: this may throw non-cms like exception
94  if (address != length)
95  throw cms::Exception("Incorrect LUT size")
96  << "CSCTFConfigProducer read " << address << " words from " << path << " instead of " << length << std::endl;
97  file.close();
98  }
99  LogDebug("CSCTFConfigProducer::readLUT") << " read from " << path << " " << length << " words" << std::endl;
100 }
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:166
std::string registers[12]
dictionary config
Read in AllInOne config in JSON format.
Definition: DMR_cfg.py:21
std::unique_ptr< L1MuCSCTFAlignment > produceL1MuCSCTFAlignmentRcd(const L1MuCSCTFAlignmentRcd &iRecord)
Definition: config.py:1
std::unique_ptr< L1MuCSCTFConfiguration > produceL1MuCSCTFConfigurationRcd(const L1MuCSCTFConfigurationRcd &iRecord)
std::vector< double > alignment
Log< level::Info, false > LogInfo
std::unique_ptr< L1MuCSCPtLut > produceL1MuCSCPtLutRcd(const L1MuCSCPtLutRcd &iRecord)
void readLUT(std::string path, unsigned short *lut, unsigned long length)
CSCTFConfigProducer(const edm::ParameterSet &pset)
#define LogDebug(id)