FACT++  1.0
uint32_t zfits::UnApplySMOOTHING ( int16_t *  data,
uint32_t  numElems 
)
inlineprivate

Definition at line 492 of file zfits.h.

Referenced by UncompressBuffer().

494  {
495  //un-do the integer smoothing
496  for (uint32_t j=2;j<numElems;j++)
497  data[j] = data[j] + (data[j-1]+data[j-2])/2;
498 
499  return numElems*sizeof(uint16_t);
500  }
float data[4 *1440]

+ Here is the caller graph for this function: