CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CastorTPGCoder.h
Go to the documentation of this file.
1 #ifndef CALIBFORMATS_CASTOROBJECTS_CASTORTPGCODER_H
2 #define CALIBFORMATS_CASTOROBJECTS_CASTORTPGCODER_H 1
3 
7 
8 // forward declaration of EventSetup is all that is needed here
9 namespace edm {
10  class EventSetup;
11 }
12 
26 public:
27 
28  // virtual void adc2Linear(const CastorDataFrame& df, IntegerCaloSamples& ics) const = 0;
29 
30  virtual unsigned short adc2Linear(HcalQIESample sample,HcalDetId id) const = 0;
31  unsigned short adc2Linear(unsigned char adc, HcalDetId id) const { return adc2Linear(HcalQIESample(adc,0,0,0),id); }
32  virtual float getLUTPedestal(HcalDetId id) const = 0;
33  virtual float getLUTGain(HcalDetId id) const = 0;
37  virtual std::vector<unsigned short> getLinearizationLUT(HcalDetId id) const;
38 };
39 
40 #endif
int adc(sample_type sample)
get the ADC sample (12 bits)
unsigned short adc2Linear(unsigned char adc, HcalDetId id) const
virtual std::vector< unsigned short > getLinearizationLUT(HcalDetId id) const
Get the full linearization LUT (128 elements). Default implementation just uses adc2Linear to get all...
virtual unsigned short adc2Linear(HcalQIESample sample, HcalDetId id) const =0
virtual float getLUTPedestal(HcalDetId id) const =0
virtual float getLUTGain(HcalDetId id) const =0