Go to the documentation of this file.00001
00002
00003
00004
00005
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "Geometry/CaloEventSetup/plugins/EcalTrigTowerConstituentsMapBuilder.h"
00022 #include "DataFormats/EcalDetId/interface/EcalTrigTowerDetId.h"
00023 #include "DataFormats/EcalDetId/interface/EBDetId.h"
00024 #include "DataFormats/EcalDetId/interface/EEDetId.h"
00025
00026 #include <iostream>
00027 #include <fstream>
00028
00029 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00030
00031
00032
00033
00034 EcalTrigTowerConstituentsMapBuilder::EcalTrigTowerConstituentsMapBuilder(const edm::ParameterSet& iConfig) :
00035 mapFile_(iConfig.getUntrackedParameter<std::string>("MapFile",""))
00036 {
00037
00038
00039 setWhatProduced(this);
00040
00041
00042 }
00043
00044
00045 EcalTrigTowerConstituentsMapBuilder::~EcalTrigTowerConstituentsMapBuilder()
00046 {
00047 }
00048
00049
00050
00051
00052
00053
00054 EcalTrigTowerConstituentsMapBuilder::ReturnType
00055 EcalTrigTowerConstituentsMapBuilder::produce(const IdealGeometryRecord& iRecord)
00056 {
00057 std::auto_ptr<EcalTrigTowerConstituentsMap> prod(new EcalTrigTowerConstituentsMap());
00058
00059 if (!mapFile_.empty()) {
00060 parseTextMap(mapFile_,*prod);
00061 }
00062 return prod;
00063 }
00064
00065 void EcalTrigTowerConstituentsMapBuilder::parseTextMap(const std::string& filename, EcalTrigTowerConstituentsMap& theMap) {
00066 edm::FileInPath eff(filename);
00067
00068 std::ifstream f(eff.fullPath().c_str());
00069 if (!f.good())
00070 return;
00071
00072 int ietaTower,iphiTower;
00073 int ix,iy,iz;
00074 char line[80];
00075 char ch;
00076 while ((ch = f.peek()) != '-') {
00077 f.get(line,80,'\n');
00078 f.get(ch);
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091 int nread = sscanf (line, " %d %d %d %d %d",&ix,&iy,&iz,&ietaTower, &iphiTower);
00092 if (nread == 5) {
00093 EEDetId eeid(ix,iy,iz,0);
00094
00095 EcalTrigTowerDetId etid(iz,EcalEndcap,ietaTower,iphiTower);
00096 theMap.assign(DetId(eeid),etid);
00097 }
00098
00099 }
00100
00101 f.get(line,80,'\n');
00102 f.get(ch);
00103
00104 f.get(line,80,'\n');
00105 f.get(ch);
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119 f.close();
00120 return;
00121 }