CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/TBDataFormats/EcalTBObjects/interface/EcalTBTDCRecInfo.h

Go to the documentation of this file.
00001 #ifndef RECECAL_ECALTBTDCRECINFO_H
00002 #define RECECAL_ECALTBTDCRECINFO_H 1
00003 
00004 #include <ostream>
00005 
00014 class EcalTBTDCRecInfo {
00015  public:
00016 
00017   EcalTBTDCRecInfo() {};
00018   EcalTBTDCRecInfo(const float& offset): offset_(offset)
00019     {
00020     };
00021   
00022   ~EcalTBTDCRecInfo() {};
00023   
00024   float offset() const { return offset_; }
00025 
00026  private:
00027 
00028   float offset_;
00029   
00030 };
00031 
00032 std::ostream& operator<<(std::ostream&, const EcalTBTDCRecInfo&);
00033   
00034 #endif