Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix headers in EventFilter/Phase2TrackerRawToDigi #23190

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

#include "EventFilter/Phase2TrackerRawToDigi/interface/Phase2TrackerFEDDAQHeader.h"
#include "EventFilter/Phase2TrackerRawToDigi/interface/Phase2TrackerFEDDAQTrailer.h"
#include "EventFilter/Phase2TrackerRawToDigi/interface/Phase2TrackerFEDBuffer.h"
#include <cstdint>

namespace Phase2Tracker {
Expand All @@ -12,6 +11,8 @@ namespace Phase2Tracker {
// for use by unpacker
class Phase2TrackerFEDChannel
{
//forward declaration to avoid circular includes
class Phase2TrackerFEDBuffer;
public:
Phase2TrackerFEDChannel(const uint8_t*const data, const size_t offset,
const uint16_t length): data_(data), offset_(offset), length_(length) {}
Expand Down