Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:11

0001 #ifndef CASTORNOMINALCODER_H
0002 #define CASTORNOMINALCODER_H 1
0003 
0004 #include "CalibFormats/CastorObjects/interface/CastorCoder.h"
0005 
0006 /** \class CastorNominalCoder
0007     
0008     Simple coder which uses the QIESample to convert to fC
0009 
0010 */
0011 class CastorNominalCoder : public CastorCoder {
0012 public:
0013   void adc2fC(const CastorDataFrame& df, CaloSamples& lf) const override;
0014 
0015   void fC2adc(const CaloSamples& clf, CastorDataFrame& df, int fCapIdOffset) const override;
0016 };
0017 
0018 #endif