1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef EventFilter_L1TRawToDigi_Omtf_DtUnpacker_H
#define EventFilter_L1TRawToDigi_Omtf_DtUnpacker_H
#include <string>
#include "DataFormats/L1TMuon/interface/OMTF/OmtfDataWord64.h"
#include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambPhContainer.h"
#include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambThContainer.h"
namespace omtf {
class DtDataWord64;
class DtUnpacker {
public:
void unpack(unsigned int fed,
unsigned int amc,
const DtDataWord64 &raw,
std::vector<L1MuDTChambPhDigi> &phi_Container,
std::vector<L1MuDTChambThDigi> &the_Container);
};
} // namespace omtf
#endif
|