CMS 3D CMS Logo

EcalFenixLinearizer.h
Go to the documentation of this file.
1 #ifndef ECAL_FENIX_LINEARIZER_H
2 #define ECAL_FENIX_LINEARIZER_H
3 
8 
9 #include <vector>
10 
20 private:
21  bool famos_;
23  int gainID_;
24  int base_;
25  int mult_;
26  int shift_;
27  int strip_;
28  bool init_;
29 
33 
34  std::vector<const EcalTPGCrystalStatusCode *> vectorbadXStatus_;
35 
36  int setInput(const EcalMGPASample &RawSam);
37  int process();
38 
39 public:
40  EcalFenixLinearizer(bool famos);
41  virtual ~EcalFenixLinearizer();
42 
43  template <class T>
44  void process(const T &, std::vector<int> &);
45  void setParameters(uint32_t raw,
46  const EcalTPGPedestals *ecaltpPed,
47  const EcalTPGLinearizationConst *ecaltpLin,
48  const EcalTPGCrystalStatus *ecaltpBadX);
49 };
50 
51 template <class T>
52 void EcalFenixLinearizer::process(const T &df, std::vector<int> &output_percry) {
53  //We know a tower numbering is:
54  // S1 S2 S3 S4 S5
55  //
56  // 4 5 14 15 24
57  // 3 6 13 16 23
58  // 2 7 12 17 22
59  // 1 8 11 18 21
60  // 0 9 10 19 20
61 
62  //std::cout << " EcalFenixLinearizer::process(const .. DataFrame " << std::endl;
63  for (int i = 0; i < df.size(); i++) {
64  //std::cout << df[i] << " ";
65  }
66 
67  for (int i = 0; i < df.size(); i++) {
68  setInput(df[i]);
69  output_percry[i] = process();
70  }
71 
72  //std::cout << " EcalFenixLinearizer::process(const .. Final output " << std::endl;
73  for (int i = 0; i < df.size(); i++) {
74  //std::cout << " output_percry " << output_percry[i]<< " ";
75  }
76 
77  return;
78 }
79 
80 #endif
void setParameters(uint32_t raw, const EcalTPGPedestals *ecaltpPed, const EcalTPGLinearizationConst *ecaltpLin, const EcalTPGCrystalStatus *ecaltpBadX)
EcalFenixLinearizer(bool famos)
Linearisation for Fenix strip input: 16 bits corresponding to input EBDataFrame output: 18 bits...
int setInput(const EcalMGPASample &RawSam)
const EcalTPGLinearizationConstant * linConsts_
const EcalTPGCrystalStatusCode * badXStatus_
std::vector< const EcalTPGCrystalStatusCode * > vectorbadXStatus_
const EcalTPGPedestal * peds_
long double T