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 }
EcalTrigTowerConstituentsMapBuilder::EcalTrigTowerConstituentsMapBuilder
EcalTrigTowerConstituentsMapBuilder(const edm::ParameterSet &)
Definition: EcalTrigTowerConstituentsMapBuilder.cc:26
MessageLogger.h
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
EcalTrigTowerConstituentsMapBuilder::parseTextMap
void parseTextMap(const std::string &filename, EcalTrigTowerConstituentsMap &theMap)
Definition: EcalTrigTowerConstituentsMapBuilder.cc:43
EEDetId.h
edm::ESProducer::setWhatProduced
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:163
EcalTrigTowerDetId
Definition: EcalTrigTowerDetId.h:14
DetId
Definition: DetId.h:17
edm::FileInPath
Definition: FileInPath.h:64
dumpMFGeometry_cfg.prod
prod
Definition: dumpMFGeometry_cfg.py:24
EcalTrigTowerConstituentsMapBuilder.h
EcalTrigTowerConstituentsMapBuilder::ReturnType
std::unique_ptr< EcalTrigTowerConstituentsMap > ReturnType
Definition: EcalTrigTowerConstituentsMapBuilder.h:40
corrVsCorr.filename
filename
Definition: corrVsCorr.py:123
EEDetId
Definition: EEDetId.h:14
EcalTrigTowerDetId.h
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
EcalEndcap
Definition: EcalSubdetector.h:10
EcalTrigTowerConstituentsMap
Definition: EcalTrigTowerConstituentsMap.h:19
EcalTrigTowerConstituentsMapBuilder::~EcalTrigTowerConstituentsMapBuilder
~EcalTrigTowerConstituentsMapBuilder() override
Definition: EcalTrigTowerConstituentsMapBuilder.cc:31
edm::ParameterSet
Definition: ParameterSet.h:47
EcalTrigTowerConstituentsMapBuilder::produce
ReturnType produce(const IdealGeometryRecord &)
Definition: EcalTrigTowerConstituentsMapBuilder.cc:33
EcalTrigTowerConstituentsMapBuilder::mapFile_
std::string mapFile_
Definition: EcalTrigTowerConstituentsMapBuilder.h:46
std
Definition: JetResolutionObject.h:76
EcalTrigTowerConstituentsMap::assign
void assign(const DetId &cell, const EcalTrigTowerDetId &tower)
set the association between a DetId and a tower
Definition: EcalTrigTowerConstituentsMap.cc:152
mps_splice.line
line
Definition: mps_splice.py:76
IdealGeometryRecord
Definition: IdealGeometryRecord.h:25
edm::FileInPath::fullPath
std::string fullPath() const
Definition: FileInPath.cc:163