CMS 3D CMS Logo

MedianCMNSubtractor.cc
Go to the documentation of this file.
2 
3 void MedianCMNSubtractor::subtract(uint32_t detId, uint16_t firstAPV, std::vector<int16_t>& digis) {
4  subtract_(detId, firstAPV, digis);
5 }
6 void MedianCMNSubtractor::subtract(uint32_t detId, uint16_t firstAPV, std::vector<float>& digis) {
7  subtract_(detId, firstAPV, digis);
8 }
9 
10 template <typename T>
11 inline void MedianCMNSubtractor::subtract_(uint32_t detId, uint16_t firstAPV, std::vector<T>& digis) {
12  std::vector<T> tmp;
13  tmp.reserve(128);
14  typename std::vector<T>::iterator strip(digis.begin()), end(digis.end()), endAPV;
15 
16  _vmedians.clear();
17 
18  while (strip < end) {
19  endAPV = strip + 128;
20  tmp.clear();
21  tmp.insert(tmp.end(), strip, endAPV);
22  const float offset = median(tmp);
23 
24  _vmedians.push_back(std::pair<short, float>((strip - digis.begin()) / 128 + firstAPV, offset));
25 
26  while (strip < endAPV) {
27  *strip = static_cast<T>(*strip - offset);
28  strip++;
29  }
30  }
31 }
void subtract_(uint32_t detId, uint16_t firstAPV, std::vector< T > &digis)
void subtract(uint32_t detId, uint16_t firstAPV, std::vector< int16_t > &digis) override
tmp
align.sh
Definition: createJobs.py:716
long double T
std::vector< std::pair< short, float > > _vmedians