1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef EventFilter_L1TRawToDigi_UnpackerCollections_h
#define EventFilter_L1TRawToDigi_UnpackerCollections_h
namespace edm {
class Event;
}
namespace l1t {
class UnpackerCollections {
public:
UnpackerCollections(edm::Event& e) : event_(e) {}
virtual ~UnpackerCollections() {}
protected:
edm::Event& event_;
};
} // namespace l1t
#endif
|