File indexing completed on 2024-04-06 12:04:04
0001 #ifndef DIGIECAL_EEDATAFRAME_H
0002 #define DIGIECAL_EEDATAFRAME_H
0003
0004 #include "DataFormats/EcalDetId/interface/EEDetId.h"
0005 #include "DataFormats/EcalDigi/interface/EcalDataFrame.h"
0006 #include <iosfwd>
0007
0008
0009
0010
0011
0012 class EEDataFrame : public EcalDataFrame {
0013 public:
0014 typedef EEDetId key_type;
0015 typedef EcalDataFrame Base;
0016
0017 EEDataFrame() {}
0018
0019 EEDataFrame(edm::DataFrame const& base) : Base(base) {}
0020 EEDataFrame(EcalDataFrame const& base) : Base(base) {}
0021
0022 ~EEDataFrame() override {}
0023
0024 key_type id() const { return Base::id(); }
0025 };
0026
0027 std::ostream& operator<<(std::ostream&, const EEDataFrame&);
0028
0029 #endif