CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCPedestalsDBConditions.h
Go to the documentation of this file.
1 #ifndef _CSCPEDESTALSDBCONDITIONS_H
2 #define _CSCPEDESTALSDBCONDITIONS_H
3 
4 #include <memory>
5 #include <cmath>
15 
19 
21  public:
24 
25  inline static CSCDBPedestals * prefillDBPedestals();
26 
27  typedef const CSCDBPedestals * ReturnType;
28 
30 
31  private:
32  // ----------member data ---------------------------
35 
36 };
37 
41 
42 #include<fstream>
43 #include<vector>
44 #include<iostream>
45 
46 // to workaround plugin library
48 {
49  const int PED_FACTOR=10;
50  const int RMS_FACTOR=1000;
51  const int MAX_SIZE = 252288;
52  //const int MAX_SIZE = 273024; //for extra ME1a unganged case
53  const int MAX_SHORT= 32767;
54  CSCDBPedestals * cndbpedestals = new CSCDBPedestals();
55 
56  int db_index;
57  float db_ped, db_rms;
58  std::vector<int> db_index_id;
59  std::vector<float> db_peds;
60  std::vector<float> db_pedrms;
61  int new_index;
62  float new_ped,new_rms;
63  std::vector<int> new_index_id;
64  std::vector<float> new_peds;
65  std::vector<float> new_pedrms;
66 
67  int counter;
68  int db_nrlines=0;
69  int new_nrlines=0;
70 
71  std::ifstream dbdata;
72  dbdata.open("old_dbpeds.dat",std::ios::in);
73  if(!dbdata) {
74  std::cerr <<"Error: old_dbpeds.dat -> no such file!"<< std::endl;
75  exit(1);
76  }
77 
78  while (!dbdata.eof() ) {
79  dbdata >> db_index >> db_ped >> db_rms ;
80  db_index_id.push_back(db_index);
81  db_peds.push_back(db_ped);
82  db_pedrms.push_back(db_rms);
83  db_nrlines++;
84  }
85  dbdata.close();
86 
87  std::ifstream newdata;
88  newdata.open("peds.dat",std::ios::in);
89  if(!newdata) {
90  std::cerr <<"Error: peds.dat -> no such file!"<< std::endl;
91  exit(1);
92  }
93 
94  while (!newdata.eof() ) {
95  newdata >> new_index >> new_ped >> new_rms ;
96  new_index_id.push_back(new_index);
97  new_peds.push_back(new_ped);
98  new_pedrms.push_back(new_rms);
99  new_nrlines++;
100  }
101  newdata.close();
102 
103  CSCDBPedestals::PedestalContainer & itemvector = cndbpedestals->pedestals;
104  itemvector.resize(MAX_SIZE);
105  cndbpedestals->factor_ped= int (PED_FACTOR);
106  cndbpedestals->factor_rms= int (RMS_FACTOR);
107 
108  for(int i=0; i<MAX_SIZE;++i){
109  itemvector[i].ped= (short int) (db_peds[i]*PED_FACTOR+0.5);
110  itemvector[i].rms= (short int) (db_pedrms[i]*RMS_FACTOR+0.5);
111  }
112 
113  for(int i=0; i<MAX_SIZE;++i){
114  counter=db_index_id[i];
115  itemvector[i] = itemvector[counter];
116  itemvector[i].ped = int (db_peds[i]);
117  itemvector[i].rms = int (db_pedrms[i]);
118 
119  for (unsigned int k=0;k<new_index_id.size()-1;k++){
120  if(counter==new_index_id[k]){
121  if((short int) (fabs(new_peds[k]*PED_FACTOR+0.5))<MAX_SHORT) itemvector[counter].ped= int (new_peds[k]*PED_FACTOR+0.5);
122  if((short int) (fabs(new_pedrms[k]*RMS_FACTOR+0.5))<MAX_SHORT) itemvector[counter].rms= int (new_pedrms[k]*RMS_FACTOR+0.5);
123  itemvector[i] = itemvector[counter];
124  //if (new_peds[k]==0) itemvector[counter].ped = int (db_peds[i]);
125  //if (new_pedrms[k]==0) itemvector[counter].rms = int (db_pedrms[i]);
126  }
127  }
128 
129  if (counter>223968){
130  itemvector[counter].ped = int (db_peds[i]);
131  itemvector[counter].rms = int (db_pedrms[i]);
132  itemvector[i] = itemvector[counter];
133  }
134 
135  }
136  return cndbpedestals;
137 }
138 
139 #endif
ReturnType produceDBPedestals(const CSCDBPedestalsRcd &)
int i
Definition: DBlmapReader.cc:9
const CSCDBPedestals * ReturnType
static CSCDBPedestals * prefillDBPedestals()
std::vector< Item > PedestalContainer
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &)
PedestalContainer pedestals
CSCPedestalsDBConditions(const edm::ParameterSet &)
static std::atomic< unsigned int > counter