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 {
29  setWhatProduced(this);
30 }
31 
33 {
34 }
35 
38 {
39  auto prod = std::make_unique<EcalTrigTowerConstituentsMap>();
40 
41  if (!mapFile_.empty()) {
43  }
44  return prod;
45 }
46 
48  edm::FileInPath eff(filename);
49 
50  std::ifstream f(eff.fullPath().c_str());
51  if (!f.good())
52  return;
53 
54  int ietaTower,iphiTower;
55  int ix,iy,iz;
56  char line[80]; // a buffer for the line to read
57  char ch; // a temporary for holding the end of line
58  while ((ch = f.peek()) != '-') {
59  f.get(line,80,'\n'); // read 80 characters to end of line
60  f.get(ch); // eat out the '\n'
61  // extract the numbers
62 
63  int nread = sscanf (line, " %d %d %d %d %d",&ix,&iy,&iz,&ietaTower, &iphiTower);
64  if (nread == 5) {
65  EEDetId eeid(ix,iy,iz,0);
66  EcalTrigTowerDetId etid(iz,EcalEndcap,ietaTower,iphiTower);
67  theMap.assign(DetId(eeid),etid);
68  }
69 
70  }
71  // Pass comment line
72  f.get(line,80,'\n'); // read 80 characters to end of line
73  f.get(ch); // eat out the '\n'
74  // Next info line
75  f.get(line,80,'\n'); // read 80 characters to end of line
76  f.get(ch); // eat out the '\n'
77  f.close();
78  return;
79 }
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:124
void assign(const DetId &cell, const EcalTrigTowerDetId &tower)
set the association between a DetId and a tower
ReturnType produce(const IdealGeometryRecord &)
double f[11][100]
Definition: DetId.h:18
void parseTextMap(const std::string &filename, EcalTrigTowerConstituentsMap &theMap)
std::string fullPath() const
Definition: FileInPath.cc:163
std::unique_ptr< EcalTrigTowerConstituentsMap > ReturnType