CMS 3D CMS Logo

EcalFenixMaxof2.cc
Go to the documentation of this file.
2 
3 // global type definitions for class implementation in source file defined by
4 // Tag entries in ArgoUML Result: typedef <typedef_global_source> <tag_value>;
5 EcalFenixMaxof2::EcalFenixMaxof2(int maxNrSamples, int nbMaxStrips) : nbMaxStrips_(nbMaxStrips) {
6  std::vector<int> vec(maxNrSamples, 0);
7  for (int i2strip = 0; i2strip < nbMaxStrips_ - 1; ++i2strip)
8  sumby2_.push_back(vec);
9 }
10 
12 
13 void EcalFenixMaxof2::process(std::vector<std::vector<int>> &bypasslinout,
14  int nstrip,
15  int bitMask,
16  std::vector<int> &output) {
17  int mask = (1 << bitMask) - 1;
18  for (int i2strip = 0; i2strip < nstrip - 1; ++i2strip)
19  for (unsigned int i = 0; i < output.size(); i++)
20  sumby2_[i2strip][i] = 0;
21  for (unsigned int i = 0; i < output.size(); i++)
22  output[i] = 0;
23 
24  for (unsigned int i = 0; i < output.size(); i++) {
25  if (nstrip - 1 == 0) {
26  output[i] = ((bypasslinout[0][i]) & mask);
27  } else {
28  for (int i2strip = 0; i2strip < nstrip - 1; ++i2strip) {
29  sumby2_[i2strip][i] = ((bypasslinout[i2strip][i]) & mask) + ((bypasslinout[i2strip + 1][i]) & mask);
30  if (sumby2_[i2strip][i] > output[i]) {
31  output[i] = sumby2_[i2strip][i];
32  }
33  }
34  }
35  }
36  return;
37 }
EcalFenixMaxof2::sumby2_
std::vector< std::vector< int > > sumby2_
Definition: EcalFenixMaxof2.h:26
mps_fire.i
i
Definition: mps_fire.py:428
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:72
EcalFenixMaxof2::EcalFenixMaxof2
EcalFenixMaxof2(int maxNrSamples, int nbMaxStrips)
Definition: EcalFenixMaxof2.cc:5
trackerHitRTTI::vector
Definition: trackerHitRTTI.h:21
EcalFenixMaxof2::nbMaxStrips_
int nbMaxStrips_
Definition: EcalFenixMaxof2.h:25
EcalFenixMaxof2.h
EcalFenixMaxof2::~EcalFenixMaxof2
virtual ~EcalFenixMaxof2()
Definition: EcalFenixMaxof2.cc:11
EcalFenixMaxof2::process
void process(std::vector< std::vector< int >> &, int nStr, int bitMask, std::vector< int > &out)
Definition: EcalFenixMaxof2.cc:13