CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripGainFromAsciiFile.cc
Go to the documentation of this file.
4 
6 
8 
9 
10 #include <iostream>
11 #include <fstream>
12 #include <sstream>
13 
14 
16 
17 
18  Asciifilename_=iConfig.getParameter<std::string>("InputFileName");
19  referenceValue_ = iConfig.getParameter<double>("referenceValue");
20  fp_ = iConfig.getUntrackedParameter<edm::FileInPath>("file",edm::FileInPath("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat"));
21 }
22 
23 
25  edm::LogInfo("SiStripGainFromAsciiFile::~SiStripGainFromAsciiFile");
26 }
27 
29 
31 
32 
33  std::stringstream ss;
34  ss.str("");
35  ss << "[SiStripGainFromAsciiFile::getNewObject]\n Reading Ascii File\n";
36  FILE* infile = fopen (Asciifilename_.c_str(), "r");
37  char line[4096];
38  if (infile){
39  while(fgets(line, 4096, infile)!=NULL){
40  uint32_t detid;
41  ModuleGain MG;
42  MG.apv[0] = 0.0; MG.apv[1] = 0.0; MG.apv[2] = 0.0; MG.apv[3] = 0.0; MG.apv[4] = 0.0; MG.apv[5] = 0.0;
43  char* pch=strtok(line," "); int Arg=0;
44  while (pch!=NULL){
45  if(Arg==0){
46  sscanf(pch, "%d", &detid);
47  }else if(Arg<=6){
48  sscanf(pch, "%f", &(MG.apv[Arg-1]));
49  }else{
50  //nothing to do here
51  }
52  pch=strtok(NULL," ");Arg++;
53  }
54  ss << detid << " " << MG.apv[0] << " " << MG.apv[1] << " " << MG.apv[2] << " " << MG.apv[3] << " " << MG.apv[4] << " " << MG.apv[5] << std::endl;
55  GainsMap.insert(std::pair<unsigned int,ModuleGain>(detid,MG));
56  }
57  fclose(infile);
58  edm::LogInfo("SiStripGainFromAsciiFile") << ss.str();
59  } else {
60  edm::LogError("SiStripGainFromAsciiFile")<< " [SiStripGainFromAsciiFile::getNewObject] Error opening file " << Asciifilename_ << std::endl;
61  assert(0);
62  }
63 
64 
65 
67 
68  const std::vector<uint32_t> DetIds = reader.getAllDetIds();
69 
70  ss.str("");
71  ss << "[SiStripGainFromAsciiFile::getNewObject]\n Filling SiStripApvGain object";
72  short nApvPair;
73  for(std::vector<uint32_t>::const_iterator it=DetIds.begin(); it!=DetIds.end(); it++){
74  ModuleGain MG;
75  if (DetId(*it).det()!=DetId::Tracker)
76  continue;
77 
78  nApvPair=reader.getNumberOfApvsAndStripLength(*it).first/2;
79 
80  ss << "Looking at detid " << *it << " nApvPairs " << nApvPair << std::endl;
81  __gnu_cxx::hash_map< unsigned int,ModuleGain>::const_iterator iter=GainsMap.find(*it);
82  if (iter!=GainsMap.end()){
83  MG = iter->second;
84  ss << " " << MG.apv[0] << " " << MG.apv[1] << " " << MG.apv[2] << " " << MG.apv[3] << " " << MG.apv[4] << " " << MG.apv[5] << std::endl;
85  }else {
86  ss << "Hard reset for detid " << *it << std::endl;
88  }
89 
90  std::vector<float> DetGainsVector;
91 
92  if (nApvPair==2){
93  DetGainsVector.push_back(MG.apv[0]/referenceValue_);
94  DetGainsVector.push_back(MG.apv[1]/referenceValue_);
95  DetGainsVector.push_back(MG.apv[2]/referenceValue_);
96  DetGainsVector.push_back(MG.apv[3]/referenceValue_);
97  } else if (nApvPair==3){
98  DetGainsVector.push_back(MG.apv[0]/referenceValue_);
99  DetGainsVector.push_back(MG.apv[1]/referenceValue_);
100  DetGainsVector.push_back(MG.apv[2]/referenceValue_);
101  DetGainsVector.push_back(MG.apv[3]/referenceValue_);
102  DetGainsVector.push_back(MG.apv[4]/referenceValue_);
103  DetGainsVector.push_back(MG.apv[5]/referenceValue_);
104  } else {
105  edm::LogError("SiStripGainFromAsciiFile") << " SiStripGainFromAsciiFile::getNewObject] ERROR for detid " << *it << " not expected number of APV pairs " << nApvPair <<std::endl;
106  }
107 
108  SiStripApvGain::Range range(DetGainsVector.begin(),DetGainsVector.end());
109  if ( ! obj->put(*it,range) ){
110  edm::LogError("SiStripGainFromAsciiFile")<<" [SiStripGainFromAsciiFile::getNewObject] detid already exists"<<std::endl;
111  ss <<" [SiStripGainFromAsciiFile::getNewObject] detid already exists"<<std::endl;
112  }
113  }
114  edm::LogInfo("SiStripGainFromAsciiFile") << ss.str();
115 
116  return obj;
117 }
118 
119 
120 
121 
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
SiStripGainFromAsciiFile(const edm::ParameterSet &)
assert(m_qm.get())
#define NULL
Definition: scimark2.h:8
bool put(const uint32_t &detID, Range input)
std::pair< ContainerIterator, ContainerIterator > Range
__gnu_cxx::hash_map< unsigned int, ModuleGain > GainsMap
Definition: DetId.h:18
std::string fullPath() const
Definition: FileInPath.cc:184
Detector det() const
get the detector field from this detid
Definition: DetId.h:35