CMS 3D CMS Logo

CSCFakeDBGains.h
Go to the documentation of this file.
1 #ifndef _CSCFAKEDBGAINS_H
2 #define _CSCFAKEDBGAINS_H
3 
12 #include <memory>
13 
15 
19 
21 public:
23  ~CSCFakeDBGains() override;
24 
25  inline static CSCDBGains *prefillDBGains();
26 
27  typedef std::unique_ptr<CSCDBGains> Pointer;
29 
30 private:
32  const edm::IOVSyncValue &,
33  edm::ValidityInterval &) override;
34 
35  // member data
37 };
38 
39 #include <fstream>
40 #include <iostream>
41 #include <vector>
42 
43 // to workaround plugin library
45  int seed;
46  float mean;
47  const int MAX_SIZE = 217728; // or 252288 for ME4/2 chambers
48  const int FACTOR = 1000;
49 
50  CSCDBGains *cndbgains = new CSCDBGains();
51  cndbgains->gains.resize(MAX_SIZE);
52 
53  seed = 10000;
54  srand(seed);
55  mean = 6.8;
56  cndbgains->factor_gain = int(FACTOR);
57 
58  for (int i = 0; i < MAX_SIZE; i++) {
59  cndbgains->gains[i].gain_slope =
60  (short int)(((double)rand() / ((double)(RAND_MAX) + (double)(1))) + mean * FACTOR + 0.5);
61  }
62  return cndbgains;
63 }
64 
65 #endif
~CSCFakeDBGains() override
Pointer produceDBGains(const CSCDBGainsRcd &)
GainContainer gains
Definition: CSCDBGains.h:24
int factor_gain
Definition: CSCDBGains.h:19
static CSCDBGains * prefillDBGains()
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
CSCFakeDBGains(const edm::ParameterSet &)
constexpr unsigned int MAX_SIZE
std::unique_ptr< CSCDBGains > Pointer