CMS 3D CMS Logo

EcalTPGFineGrainStripfromFile.cc
Go to the documentation of this file.
2 
4 
6 
9 
10 #include<iostream>
11 #include<fstream>
12 #include <sstream>
13 
15  : m_name(ps.getUntrackedParameter<std::string>("name","EcalTPGFineGrainStripfromFile")) {
16  fname = ps.getParameter<std::string>("FileName");
17 
18  std::cout << "EcalTPGFineGrainStripfromFile constructor\n" << std::endl;
19 }
20 
22  // do nothing
23 }
24 
26  std::cout << "------- Ecal -> getNewObjects\n";
27  edm::LogInfo("EcalTPGFineGrainStripfromFile") << "Started GetNewObjects!!!";
28 
29  int fileIOV;
30  std::cout << "LinPed which input IOV do you want " << std::endl;
31  std::cin >> fileIOV;
32  std::ifstream fLin;
33  std::ostringstream oss;
34  oss << fileIOV;
35  // std::string fname = "/afs/cern.ch/cms/ECAL/triggerTransp/TPG_beamv6_trans_" + oss.str() + "_spikekill.txt";
36  fLin.open(fname.c_str());
37  if(!fLin.is_open()) {
38  std::cout << "ERROR : can't open file '" << fname << std::endl;
39  return;
40  }
41  std::cout << " file " << fname << " opened" << std::endl;
43  for(int i = 0; i < 304517; i++) getline (fLin, line);
44  char strip[8];
45  unsigned int stripId, Threshold, LUTFgr;
46 
48 
49  for (int istrip = 0; istrip < 15176; istrip++) {
50  getline (fLin, line);
51  sscanf(line.c_str(), "%s %u", strip, &stripId);
52  if(istrip < 10 || (istrip > 12239 && istrip < 12250)) std::cout << " string " << strip << " Id " << stripId;
53  getline (fLin, line); // sliding_window
54  getline (fLin, line); // weightGroupId
55  getline (fLin, line); // threshold_sfg lut_sfg
56  if(istrip < 10 || (istrip > 12239 && istrip < 12250)) std::cout << " line " << line;
57  sscanf(line.c_str(), "%x %x", &Threshold, &LUTFgr);
58  if(istrip < 10 || (istrip > 12239 && istrip < 12250)) std::cout << " Threshold " << Threshold << std::endl;
60  item.threshold = Threshold;
61  item.lut = LUTFgr;
62 
63  fgrStripEE->setValue(stripId, item);
64  if(istrip == 12239) getline (fLin, line); // 1 empty line between EB and EE
65  } // end loop over EB + EE strips
66  fLin.close();
67 
68  m_to_transfer.push_back(std::make_pair(fgrStripEE, fileIOV));
69 
70  std::cout << "Ecal -> end of getNewObjects -----------\n";
71 }
T getParameter(std::string const &) const
void setValue(const uint32_t &id, const Item &value)