CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EEDataFrame.h
Go to the documentation of this file.
1 #ifndef DIGIECAL_EEDATAFRAME_H
2 #define DIGIECAL_EEDATAFRAME_H
3 
6 #include <iosfwd>
7 
8 
9 
16 class EEDataFrame : public EcalDataFrame
17 {
18  public:
19  typedef EEDetId key_type;
21 
23  // EEDataFrame(DetId i) : Base(i) {}
24  EEDataFrame(edm::DataFrame const & base) : Base(base) {}
25  EEDataFrame(EcalDataFrame const & base) : Base(base) {}
26 
27  virtual ~EEDataFrame() {}
28 
29  key_type id() const { return Base::id(); }
30 
31 };
32 
33 
34 std::ostream& operator<<(std::ostream&, const EEDataFrame&);
35 
36 
37 #endif
tuple base
Main Program
Definition: newFWLiteAna.py:92
DetId id() const
Definition: EcalDataFrame.h:23
virtual ~EEDataFrame()
Definition: EEDataFrame.h:27
EEDataFrame(EcalDataFrame const &base)
Definition: EEDataFrame.h:25
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
EEDetId key_type
For the sorted collection.
Definition: EEDataFrame.h:19
EcalDataFrame Base
Definition: EEDataFrame.h:20
key_type id() const
Definition: EEDataFrame.h:29
EEDataFrame(edm::DataFrame const &base)
Definition: EEDataFrame.h:24