CompressionElement

CompressionSchema

CovarianceParameterization

Method

Target

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
#ifndef _DataFormats_PatCandidates_CovarianceParameterization_h_
#define _DataFormats_PatCandidates_CovarianceParameterization_h_
#include <TFile.h>
#include <TH3D.h>
#include <iostream>
#include <unordered_map>
#include <array>
#include <TKey.h>
class CompressionElement {
public:
  enum Method { float16 = 0, reduceMantissa = 1, logPack = 2, tanLogPack = 3, zero = 4, one = 5 };
  enum Target { realValue = 0, ratioToRef = 1, differenceToRef = 2 };
  CompressionElement() : method(zero), target(realValue) {}
  CompressionElement(Method m, Target t, int bitsUsed, std::vector<float> p)
      : method(m), target(t), bits(bitsUsed), params(p) {}
  Method method;
  Target target;
  int bits;
  std::vector<float> params;
  uint16_t pack(float value, float ref = 0.) const;
  float unpack(uint16_t packed, float ref = 0.) const;
};

class CovarianceParameterization {
public:
  static int index(int i, int j) {
    if (i >= j)
      return j + i * (i + 1) / 2;
    else
      return i + j * (j + 1) / 2;
  }
  struct CompressionSchema {
    CompressionSchema() {}
    std::array<CompressionElement, 15> elements;
    CompressionElement &operator()(int i, int j) { return elements[index(i, j)]; }
    const CompressionElement &operator()(int i, int j) const { return elements[index(i, j)]; }
  };
  CovarianceParameterization() : loadedVersion_(-1) {}
  bool isValid() const { return loadedVersion_ != -1; }
  int loadedVersion() const { return loadedVersion_; }
  void load(int version);
  float meanValue(
      int i, int j, int sign, float pt, float eta, int nHits, int pixelHits, float cii = 1., float cjj = 1.) const;
  float pack(float value,
             int schema,
             int i,
             int j,
             float pt,
             float eta,
             int nHits,
             int pixelHits,
             float cii = 1.,
             float cjj = 1.) const;
  float unpack(uint16_t packed,
               int schema,
               int i,
               int j,
               float pt,
               float eta,
               int nHits,
               int pixelHits,
               float cii = 1.,
               float cjj = 1.) const;

private:
  void readFile(TFile &);
  void addTheHistogram(
      std::vector<TH3D *> *HistoVector, std::string StringToAddInTheName, int i, int j, TFile &fileToRead);
  int loadedVersion_;
  TFile *fileToRead_;
  std::unordered_map<uint16_t, CompressionSchema> schemas;
  std::vector<TH3D *> cov_elements_pixelHit;
  std::vector<TH3D *> cov_elements_noPixelHit;
};

#endif