CMS 3D CMS Logo

SiStripNoises.cc
Go to the documentation of this file.
3 #include <iostream>
4 #include <algorithm>
5 #include <cmath>
6 #include <iomanip>
8 
10  v_noises.clear();
11  indexes.clear();
12  v_noises.insert(v_noises.end(),input.v_noises.begin(),input.v_noises.end());
13  indexes.insert(indexes.end(),input.indexes.begin(),input.indexes.end());
14 }
15 
16 bool SiStripNoises::put(const uint32_t& DetId, const InputVector& input) {
17  std::vector<unsigned char> Vo_CHAR;
18  encode(input, Vo_CHAR);
19 
20  Registry::iterator p = std::lower_bound(indexes.begin(),indexes.end(),DetId,SiStripNoises::StrictWeakOrdering());
21  if (p!=indexes.end() && p->detid==DetId)
22  return false;
23 
24  size_t sd = Vo_CHAR.end() - Vo_CHAR.begin();
25  DetRegistry detregistry;
26  detregistry.detid = DetId;
27  detregistry.ibegin = v_noises.size();
28  detregistry.iend = v_noises.size()+sd;
29  indexes.insert(p,detregistry);
30  v_noises.insert(v_noises.end(),Vo_CHAR.begin(),Vo_CHAR.end());
31  return true;
32 }
33 
34 const SiStripNoises::Range SiStripNoises::getRange(const uint32_t DetId) const {
35  // get SiStripNoises Range of DetId
36 
38  if (p==indexes.end()|| p->detid!=DetId)
39  return SiStripNoises::Range(v_noises.end(),v_noises.end());
40  else {
41  __builtin_prefetch((&v_noises.front())+p->ibegin);
42  __builtin_prefetch((&v_noises.front())+p->ibegin+96);
43  __builtin_prefetch((&v_noises.front())+p->iend-96);
44  return SiStripNoises::Range(v_noises.begin()+p->ibegin,v_noises.begin()+p->iend);
45 
46  }
47 }
48 
50  if (pos>indexes.size()) return Range(v_noises.end(),v_noises.end());
51  auto p = indexes.begin()+pos;
52  __builtin_prefetch((&v_noises.front())+p->ibegin);
53  __builtin_prefetch((&v_noises.front())+p->ibegin+96);
54  __builtin_prefetch((&v_noises.front())+p->iend-96);
55  return Range(v_noises.begin()+p->ibegin,v_noises.begin()+p->iend);
56 }
57 
58 
59 void SiStripNoises::getDetIds(std::vector<uint32_t>& DetIds_) const {
60  // returns vector of DetIds in map
63  DetIds_.reserve(indexes.size());
64  for (SiStripNoises::RegistryIterator p=begin; p != end; ++p) {
65  DetIds_.push_back(p->detid);
66  }
67 }
68 
69 void SiStripNoises::verify(uint16_t strip, const Range& range) {
70  if (9*strip>=(range.second-range.first)*8)
71  throw cms::Exception("CorruptedData")
72  << "[SiStripNoises::getNoise] looking for SiStripNoises for a strip out of range: strip " << strip;
73 }
74 
76  v.push_back((static_cast<int16_t> (noise_*10.0 + 0.5) & 0x01FF)) ;
77 }
78 
79 
80 void SiStripNoises::encode(const InputVector& Vi, std::vector<unsigned char>& Vo){
81  static const uint16_t BITS_PER_STRIP = 9;
82  const size_t VoSize = (size_t)((Vi.size() * BITS_PER_STRIP)/8+.999);
83  Vo.resize(VoSize);
84  for(size_t i = 0; i<VoSize; ++i)
85  Vo[i] &= 0x00u;
86 
87  for(unsigned int stripIndex =0; stripIndex<Vi.size(); ++stripIndex){
88  unsigned char* data = &Vo[VoSize-1];
89  uint32_t lowBit = stripIndex * BITS_PER_STRIP;
90  uint8_t firstByteBit = (lowBit & 0x7);
91  uint8_t firstByteNBits = 8 - firstByteBit;
92  uint8_t firstByteMask = 0xffu << firstByteBit;
93  uint8_t secondByteNbits = (BITS_PER_STRIP - firstByteNBits);
94  uint8_t secondByteMask = ~(0xffu << secondByteNbits);
95 
96  *(data-lowBit/8) = (*(data-lowBit/8) & ~(firstByteMask)) | ((Vi[stripIndex] & 0xffu) <<firstByteBit);
97  *(data-lowBit/8-1) = (*(data-lowBit/8-1) & ~(secondByteMask)) | ((Vi[stripIndex] >> firstByteNBits) & secondByteMask);
98 
99  /*
100  if(stripIndex < 25 ){
101  std::cout << "***************ENCODE*********************"<<std::endl
102  << "\tdata-lowBit/8 :"<<print_as_binary((*(data-lowBit/8) & ~(firstByteMask)))
103  << "-"<<print_as_binary(((Vi[stripIndex] & 0xffu) <<firstByteBit))
104  << "\tdata-lowBit/8-1 :"<<print_as_binary((*(data-lowBit/8-1) & ~(secondByteMask)))
105  << "-"<<print_as_binary((((Vi[stripIndex]>> firstByteNBits) & secondByteMask)))
106  << std::endl;
107  std::cout << "strip "<<stripIndex<<"\tvi: " << Vi[stripIndex] <<"\t"
108  << print_short_as_binary(Vi[stripIndex])
109  << "\tvo1:"<< print_char_as_binary(*(data-lowBit/8))
110  << "\tvo2:"<< print_char_as_binary(*(data-lowBit/8-1))
111  << "\tlowBit:"<< lowBit
112  << "\tfirstByteMask :"<<print_as_binary(firstByteMask)
113  << "\tsecondByteMask:"<<print_as_binary(secondByteMask)
114  << "\tfirstByteBit:"<<print_as_binary(firstByteBit)
115  << std::endl;
116  }
117  */
118  }
119 }
120 
121 
122 //============ Methods for bulk-decoding all noises for a module ================
123 
124 
125 
126 void SiStripNoises::allNoises(std::vector<float> &noises, const Range& range) const {
127  size_t mysize = ((range.second-range.first) << 3) / 9;
128  size_t size = noises.size();
129  if (mysize < size) throw cms::Exception("CorruptedData")
130  << "[SiStripNoises::allNoises] Requested noise for " << noises.size() << " strips, I have it only for " << mysize << " strips\n";
131  size_t size8 = size & (~0x7), carry = size & 0x7; // we have an optimized way of unpacking 8 strips
132  const uint8_t *ptr = (&*range.second) - 1;
133  std::vector<float>::iterator out = noises.begin(), end8 = noises.begin() + size8;
134  // we do it this baroque way instead of just loopin on all the strips because it's faster
135  // as the value of 'skip' is a constant, so the compiler can compute the masks directly
136  while (out < end8) {
137  *out = static_cast<float> ( get9bits(ptr, 0) / 10.0f ); ++out;
138  *out = static_cast<float> ( get9bits(ptr, 1) / 10.0f ); ++out;
139  *out = static_cast<float> ( get9bits(ptr, 2) / 10.0f ); ++out;
140  *out = static_cast<float> ( get9bits(ptr, 3) / 10.0f ); ++out;
141  *out = static_cast<float> ( get9bits(ptr, 4) / 10.0f ); ++out;
142  *out = static_cast<float> ( get9bits(ptr, 5) / 10.0f ); ++out;
143  *out = static_cast<float> ( get9bits(ptr, 6) / 10.0f ); ++out;
144  *out = static_cast<float> ( get9bits(ptr, 7) / 10.0f ); ++out;
145  --ptr; // every 8 strips we have to skip one more bit
146  }
147  for (size_t rem = 0; rem < carry; ++rem ) {
148  *out = static_cast<float> ( get9bits(ptr, rem) / 10.0f ); ++out;
149  }
150 }
151 
152 
153 /*
154 const std::string SiStripNoises::print_as_binary(const uint8_t ch) const
155 {
156  std::string str;
157  int i = CHAR_BIT;
158  while (i > 0)
159  {
160  -- i;
161  str.push_back((ch&(1 << i) ? '1' : '0'));
162  }
163  return str;
164 }
165 
166 std::string SiStripNoises::print_char_as_binary(const unsigned char ch) const
167 {
168  std::string str;
169  int i = CHAR_BIT;
170  while (i > 0)
171  {
172  -- i;
173  str.push_back((ch&(1 << i) ? '1' : '0'));
174  }
175  return str;
176 }
177 
178 std::string SiStripNoises::print_short_as_binary(const short ch) const
179 {
180  std::string str;
181  int i = CHAR_BIT*2;
182  while (i > 0)
183  {
184  -- i;
185  str.push_back((ch&(1 << i) ? '1' : '0'));
186  }
187  return str;
188 }
189 */
190 
191 void SiStripNoises::printDebug(std::stringstream& ss, const TrackerTopology* /*trackerTopo*/) const{
193  uint16_t Nstrips;
194  std::vector<float> vstripnoise;
195 
196  ss << "detid" << std::setw(15) << "strip" << std::setw(10) << "noise" << std::endl;
197 
198  int detId = 0;
199  int oldDetId = 0;
200  for(;rit!=erit;++rit){
201  Nstrips = (rit->iend-rit->ibegin)*8/9; //number of strips = number of chars * char size / strip noise size
202  vstripnoise.resize(Nstrips);
203  allNoises(vstripnoise,make_pair(getDataVectorBegin()+rit->ibegin,getDataVectorBegin()+rit->iend));
204 
205  detId = rit->detid;
206  if( detId != oldDetId ) {
207  oldDetId = detId;
208  ss << detId;
209  }
210  else ss << " ";
211  for(size_t i=0;i<Nstrips;++i){
212  if( i != 0 ) ss << " ";
213  ss << std::setw(15) << i << std::setw(10) << vstripnoise[i] << std::endl;
214  }
215  }
216 }
217 
218 void SiStripNoises::printSummary(std::stringstream& ss, const TrackerTopology* trackerTopo) const{
219 
220  SiStripDetSummary summary{trackerTopo};
221 
222  std::stringstream tempss;
223 
225  uint16_t Nstrips;
226  std::vector<float> vstripnoise;
227  double mean,rms,min, max;
228  for(;rit!=erit;++rit){
229  Nstrips = (rit->iend-rit->ibegin)*8/9; //number of strips = number of chars * char size / strip noise size
230  vstripnoise.resize(Nstrips);
231  allNoises(vstripnoise,make_pair(getDataVectorBegin()+rit->ibegin,getDataVectorBegin()+rit->iend));
232  tempss << "\ndetid: " << rit->detid << " \t ";
233  mean=0; rms=0; min=10000; max=0;
234 
235  DetId detId(rit->detid);
236 
237  for(size_t i=0;i<Nstrips;++i){
238  mean+=vstripnoise[i];
239  rms+=vstripnoise[i]*vstripnoise[i];
240  if(vstripnoise[i]<min) min=vstripnoise[i];
241  if(vstripnoise[i]>max) max=vstripnoise[i];
242 
243  summary.add(detId, vstripnoise[i]);
244  }
245  mean/=Nstrips;
246  rms= sqrt(rms/Nstrips-mean*mean);
247 
248 
249  tempss << "Nstrips " << Nstrips << " \t; mean " << mean << " \t; rms " << rms << " \t; min " << min << " \t; max " << max << "\t " ;
250  }
251  ss << std::endl << "Summary:" << std::endl;
252  summary.print(ss);
253  ss << std::endl;
254  ss << tempss.str();
255 }
256 
257 std::vector<SiStripNoises::ratioData> SiStripNoises::operator / ( const SiStripNoises& d) {
258  std::vector<ratioData> result;
259  ratioData aData;
260 
263 
264  //Divide result by d
265  for(;iter!=iterE;++iter){
266  float value;
267  //get noise from d
268  aData.detid=iter->detid;
269  aData.values.clear();
270  Range d_range=d.getRange(iter->detid);
271  Range range=Range(v_noises.begin()+iter->ibegin,v_noises.begin()+iter->iend);
272 
273  //if denominator is missing, put the ratio value to 0xFFFF (=inf)
274  size_t strip=0, stripE= (range.second-range.first)*8/9;
275  for (;strip<stripE;++strip){
276  if(d_range.first==d_range.second){
277  value=0xFFFF;
278  }else{
279  value=getNoise(strip,range)/d.getNoise(strip,d_range);
280  }
281  aData.values.push_back(value);
282  }
283  result.push_back(aData);
284  }
285 
286  iter=d.getRegistryVectorBegin();
287  iterE=d.getRegistryVectorEnd();
288 
289  //Divide result by d
290  for(;iter!=iterE;++iter){
291  float value;
292  //get noise from d
293  Range range=this->getRange(iter->detid);
294  Range d_range=Range(d.v_noises.begin()+iter->ibegin,d.v_noises.begin()+iter->iend);
295  if(range.first==range.second){
296  aData.detid=iter->detid;
297  aData.values.clear();
298  size_t strip=0, stripE= (d_range.second-d_range.first)*8/9;
299  for (;strip<stripE;++strip){
300  value=0.;
301  aData.values.push_back(value);
302  }
303  result.push_back(aData);
304  }
305  }
306 
307  return result;
308 }
size
Write out results.
static const char noise_[]
Registry indexes
static uint16_t get9bits(const uint8_t *&ptr, int8_t skip)
std::vector< float > values
Definition: SiStripNoises.h:31
std::vector< uint16_t > InputVector
Definition: SiStripNoises.h:53
Container v_noises
Definition: SiStripNoises.h:99
std::vector< ratioData > operator/(const SiStripNoises &d)
static void verify(uint16_t strip, const Range &range)
static void encode(const InputVector &Vi, std::vector< unsigned char > &Vo_CHAR)
static std::string const input
Definition: EdmProvDump.cc:48
static float getNoise(uint16_t strip, const Range &range)
Definition: SiStripNoises.h:74
T sqrt(T t)
Definition: SSEVec.h:18
Registry::const_iterator RegistryIterator
Definition: SiStripNoises.h:52
#define end
Definition: vmac.h:39
T min(T a, T b)
Definition: MathUtil.h:58
bool put(const uint32_t &detID, const InputVector &input)
Definition: DetId.h:18
RegistryIterator getRegistryVectorEnd() const
Definition: SiStripNoises.h:67
void getDetIds(std::vector< uint32_t > &DetIds_) const
void printSummary(std::stringstream &ss, const TrackerTopology *trackerTopo) const
RegistryIterator getRegistryVectorBegin() const
Definition: SiStripNoises.h:66
double sd
#define begin
Definition: vmac.h:32
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
Range getRangeByPos(unsigned short pos) const
const Range getRange(const uint32_t detID) const
void printDebug(std::stringstream &ss, const TrackerTopology *trackerTopo) const
std::pair< ContainerIterator, ContainerIterator > Range
Definition: SiStripNoises.h:50
void allNoises(std::vector< float > &noises, const Range &range) const
ContainerIterator getDataVectorBegin() const
Definition: SiStripNoises.h:64
void setData(float noise_, InputVector &vped)