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

change the raw format for 48-chan feds, back to the old one #16164

Merged
merged 1 commit into from Oct 13, 2016
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
8 changes: 5 additions & 3 deletions EventFilter/SiPixelRawToDigi/src/PixelDataFormatter.cc
Expand Up @@ -32,9 +32,11 @@ namespace {

// Add phase1 constants
// For phase1
constexpr int LINK_bits1 = 7;
constexpr int ROC_bits1 = 4;
// Special for layer 1 bpix rocs 6/9/16 d.k.
//GO BACK TO OLD VALUES. THE 48-CHAN FED DOES NOT NEED A NEW FORMAT
// 28/9/16 d.k.
constexpr int LINK_bits1 = 6; // 7;
constexpr int ROC_bits1 = 5; // 4;
// Special for layer 1 bpix rocs 6/9/16 d.k. THIS STAYS.
constexpr int COL_bits1_l1 = 6;
constexpr int ROW_bits1_l1 = 7;

Expand Down