File indexing completed on 2024-04-06 12:10:31
0001 #ifndef DTROS8Unpacker_h
0002 #define DTROS8Unpacker_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0013
0014 #include <EventFilter/DTRawToDigi/plugins/DTUnpacker.h>
0015
0016 class DTReadOutMapping;
0017
0018 class DTROS8Unpacker : public DTUnpacker {
0019 public:
0020
0021 DTROS8Unpacker(const edm::ParameterSet& ps) : pset(ps) {}
0022
0023
0024 ~DTROS8Unpacker() override {}
0025
0026
0027 void interpretRawData(const unsigned int* index,
0028 int datasize,
0029 int dduID,
0030 edm::ESHandle<DTReadOutMapping>& mapping,
0031 std::unique_ptr<DTDigiCollection>& product,
0032 std::unique_ptr<DTLocalTriggerCollection>& product2,
0033 uint16_t rosList = 0) override;
0034
0035 private:
0036 const edm::ParameterSet pset;
0037 };
0038
0039 #endif