CMS 3D CMS Logo

HcaluLUTTPGCoder.h
Go to the documentation of this file.
1 #ifndef CALIBCALORIMETRY_HCALTPGALGOS_HCALNOMINALTPGCODER_H
2 #define CALIBCALORIMETRY_HCALTPGALGOS_HCALNOMINALTPGCODER_H 1
3 
9 
10 #include <bitset>
11 #include <vector>
12 
13 class HcalDbService;
14 
33 public:
34  static const float lsb_;
35 
37  HcaluLUTTPGCoder(const HcalTopology* topo, const HcalTimeSlew* delay);
38  ~HcaluLUTTPGCoder() override;
39 
40  void init(const HcalTopology* top, const HcalTimeSlew* delay);
41 
42  void adc2Linear(const HBHEDataFrame& df, IntegerCaloSamples& ics) const override;
43  void adc2Linear(const HFDataFrame& df, IntegerCaloSamples& ics) const override;
44  void adc2Linear(const QIE10DataFrame& df, IntegerCaloSamples& ics) const override;
45  void adc2Linear(const QIE11DataFrame& df, IntegerCaloSamples& ics) const override;
46  void compress(const IntegerCaloSamples& ics, const std::vector<bool>& featureBits, HcalTriggerPrimitiveDigi& tp) const override;
47  unsigned short adc2Linear(HcalQIESample sample,HcalDetId id) const override;
48  float getLUTPedestal(HcalDetId id) const override;
49  float getLUTGain(HcalDetId id) const override;
50  std::vector<unsigned short> getLinearizationLUT(HcalDetId id) const override;
51 
52  double cosh_ieta(int ieta, int depth, HcalSubdetector subdet);
53  void make_cosh_ieta_map(void);
54  void update(const HcalDbService& conditions);
55  void update(const char* filename, bool appendMSB = false);
56  void updateXML(const char* filename);
58  void setFGHFthresholds(const std::vector<uint32_t>& fgthresholds){ FG_HF_thresholds_ = fgthresholds; };
59  void setMaskBit(int bit){ bitToMask_ = bit; };
60  void setAllLinear(bool linear, double lsb8, double lsb11, double lsb11overlap) { allLinear_ = linear; linearLSB_QIE8_ = lsb8; linearLSB_QIE11_ = lsb11; linearLSB_QIE11Overlap_ = lsb11overlap; };
61  void lookupMSB(const HBHEDataFrame& df, std::vector<bool>& msb) const;
62  void lookupMSB(const QIE10DataFrame& df, std::vector<std::bitset<2>>& msb) const;
63  void lookupMSB(const QIE11DataFrame& df, std::vector<std::bitset<2>>& msb) const;
64  bool getMSB(const HcalDetId& id, int adc) const;
65  int getLUTId(HcalSubdetector id, int ieta, int iphi, int depth) const;
66  int getLUTId(uint32_t rawid) const;
67  int getLUTId(const HcalDetId& detid) const;
68 
69  static const int QIE8_LUT_BITMASK = 0x3FF;
70  static const int QIE10_LUT_BITMASK = 0x7FF;
71  static const int QIE11_LUT_BITMASK = 0x3FF;
72 
73 private:
74  // typedef
75  typedef unsigned short LutElement;
76  typedef std::vector<LutElement> Lut;
77 
78  // constants
79  static const size_t INPUT_LUT_SIZE = 128;
80  static const size_t UPGRADE_LUT_SIZE = 256;
81  static const int nFi_ = 72;
82 
83  static const int QIE8_LUT_MSB = 0x400;
84  static const int QIE11_LUT_MSB0 = 0x400;
85  static const int QIE11_LUT_MSB1 = 0x800;
86  static const int QIE10_LUT_MSB0 = 0x1000;
87  static const int QIE10_LUT_MSB1 = 0x2000;
88 
89  // member variables
93  std::vector<uint32_t> FG_HF_thresholds_;
98  std::vector< Lut > inputLUT_;
99  std::vector<float> gain_;
100  std::vector<float> ped_;
101  std::vector<double> cosh_ieta_;
102  // edge cases not covered by the cosh_ieta_ map
106  std::unique_ptr<HcalPulseContainmentManager> pulseCorr_;
107 };
108 
109 #endif
std::vector< uint32_t > FG_HF_thresholds_
static const int nFi_
void adc2Linear(const HBHEDataFrame &df, IntegerCaloSamples &ics) const override
double cosh_ieta_28_HE_high_depths_
double linearLSB_QIE11Overlap_
static const int QIE11_LUT_MSB1
static const int QIE11_LUT_BITMASK
float getLUTGain(HcalDetId id) const override
const HcalTopology * topo_
static const int QIE11_LUT_MSB0
static const float lsb_
double cosh_ieta_28_HE_low_depths_
void init(const HcalTopology *top, const HcalTimeSlew *delay)
static const int QIE8_LUT_BITMASK
unsigned short LutElement
void update(const HcalDbService &conditions)
void updateXML(const char *filename)
void setLUTGenerationMode(bool gen)
static const int QIE10_LUT_MSB0
static const size_t UPGRADE_LUT_SIZE
void lookupMSB(const HBHEDataFrame &df, std::vector< bool > &msb) const
int getLUTId(HcalSubdetector id, int ieta, int iphi, int depth) const
const HcalTimeSlew * delay_
HcalSubdetector
Definition: HcalAssistant.h:31
std::vector< LutElement > Lut
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
def gen(fragment, howMuch)
Production test section ####.
static const int QIE8_LUT_MSB
static const int QIE10_LUT_BITMASK
std::vector< double > cosh_ieta_
std::vector< float > ped_
double cosh_ieta(int ieta, int depth, HcalSubdetector subdet)
std::vector< float > gain_
void setMaskBit(int bit)
~HcaluLUTTPGCoder() override
void setAllLinear(bool linear, double lsb8, double lsb11, double lsb11overlap)
static const size_t INPUT_LUT_SIZE
bool getMSB(const HcalDetId &id, int adc) const
float getLUTPedestal(HcalDetId id) const override
float linear(float x)
void setFGHFthresholds(const std::vector< uint32_t > &fgthresholds)
void make_cosh_ieta_map(void)
std::unique_ptr< HcalPulseContainmentManager > pulseCorr_
static const int QIE10_LUT_MSB1
void compress(const IntegerCaloSamples &ics, const std::vector< bool > &featureBits, HcalTriggerPrimitiveDigi &tp) const override
std::vector< unsigned short > getLinearizationLUT(HcalDetId id) const override
Get the full linearization LUT (128 elements). Default implementation just uses adc2Linear to get all...
std::vector< Lut > inputLUT_