Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:26:00

0001 #ifndef RECECAL_ECALTBTDCRECINFO_H
0002 #define RECECAL_ECALTBTDCRECINFO_H 1
0003 
0004 #include <ostream>
0005 
0006 /** \class EcalTBTDCRecInfo
0007  *  Simple container for TDC reconstructed informations 
0008  *
0009  *
0010  */
0011 
0012 class EcalTBTDCRecInfo {
0013 public:
0014   EcalTBTDCRecInfo(){};
0015   EcalTBTDCRecInfo(const float& offset) : offset_(offset){};
0016 
0017   ~EcalTBTDCRecInfo(){};
0018 
0019   float offset() const { return offset_; }
0020 
0021 private:
0022   float offset_;
0023 };
0024 
0025 std::ostream& operator<<(std::ostream&, const EcalTBTDCRecInfo&);
0026 
0027 #endif