CMS 3D CMS Logo

EcalTrigTowerConstituentsMapBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: EcalTrigTowerConstituentsMapBuilder
4 // Class: EcalTrigTowerConstituentsMapBuilder
5 //
13 //
14 // Original Author: Paolo Meridiani
15 //
16 //
17 
21 
22 #include <fstream>
23 
25 
27  : mapFile_(iConfig.getUntrackedParameter<std::string>("MapFile", "")) {
28  setWhatProduced(this);
29 }
30 
32 
34  const IdealGeometryRecord& iRecord) {
35  auto prod = std::make_unique<EcalTrigTowerConstituentsMap>();
36 
37  if (!mapFile_.empty()) {
39  }
40  return prod;
41 }
42 
46 
47  std::ifstream f(eff.fullPath().c_str());
48  if (!f.good())
49  return;
50 
51  int ietaTower, iphiTower;
52  int ix, iy, iz;
53  char line[80]; // a buffer for the line to read
54  char ch; // a temporary for holding the end of line
55  while ((ch = f.peek()) != '-') {
56  f.get(line, 80, '\n'); // read 80 characters to end of line
57  f.get(ch); // eat out the '\n'
58  // extract the numbers
59 
60  int nread = sscanf(line, " %d %d %d %d %d", &ix, &iy, &iz, &ietaTower, &iphiTower);
61  if (nread == 5) {
62  EEDetId eeid(ix, iy, iz, 0);
63  EcalTrigTowerDetId etid(iz, EcalEndcap, ietaTower, iphiTower);
64  theMap.assign(DetId(eeid), etid);
65  }
66  }
67  // Pass comment line
68  f.get(line, 80, '\n'); // read 80 characters to end of line
69  f.get(ch); // eat out the '\n'
70  // Next info line
71  f.get(line, 80, '\n'); // read 80 characters to end of line
72  f.get(ch); // eat out the '\n'
73  f.close();
74  return;
75 }
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:166
void assign(const DetId &cell, const EcalTrigTowerDetId &tower)
set the association between a DetId and a tower
std::string fullPath() const
Definition: FileInPath.cc:161
ReturnType produce(const IdealGeometryRecord &)
double f[11][100]
ALPAKA_FN_ACC ALPAKA_FN_INLINE uint32_t ix(uint32_t id)
Definition: DetId.h:17
void parseTextMap(const std::string &filename, EcalTrigTowerConstituentsMap &theMap)
ALPAKA_FN_ACC ALPAKA_FN_INLINE uint32_t iy(uint32_t id)
std::unique_ptr< EcalTrigTowerConstituentsMap > ReturnType