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

Quick Fix for GT crashes in MDGW#2 #13576

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
32 changes: 16 additions & 16 deletions EventFilter/L1TRawToDigi/src/implementations_stage2/GTSetup.cc
Expand Up @@ -56,11 +56,11 @@ namespace l1t {

virtual UnpackerMap getUnpackers(int fed, int board, int amc, unsigned int fw) override {

auto muon_unp = UnpackerFactory::get()->make("stage2::MuonUnpacker");
auto egamma_unp = UnpackerFactory::get()->make("stage2::EGammaUnpacker");
auto etsum_unp = UnpackerFactory::get()->make("stage2::EtSumUnpacker");
auto jet_unp = UnpackerFactory::get()->make("stage2::JetUnpacker");
auto tau_unp = UnpackerFactory::get()->make("stage2::TauUnpacker");
//auto muon_unp = UnpackerFactory::get()->make("stage2::MuonUnpacker");
//auto egamma_unp = UnpackerFactory::get()->make("stage2::EGammaUnpacker");
//auto etsum_unp = UnpackerFactory::get()->make("stage2::EtSumUnpacker");
//auto jet_unp = UnpackerFactory::get()->make("stage2::JetUnpacker");
//auto tau_unp = UnpackerFactory::get()->make("stage2::TauUnpacker");
auto alg_unp = UnpackerFactory::get()->make("stage2::GlobalAlgBlkUnpacker");
auto ext_unp = UnpackerFactory::get()->make("stage2::GlobalExtBlkUnpacker");

Expand All @@ -70,17 +70,17 @@ namespace l1t {
if (fed == 1404) {

// From the rx buffers
res[0] = muon_unp;
res[2] = muon_unp;
res[4] = muon_unp;
res[6] = muon_unp;
res[8] = egamma_unp;
res[10] = egamma_unp;
res[12] = jet_unp;
res[14] = jet_unp;
res[16] = tau_unp;
res[18] = tau_unp;
res[20] = etsum_unp;
//res[0] = muon_unp;
//res[2] = muon_unp;
//res[4] = muon_unp;
//res[6] = muon_unp;
//res[8] = egamma_unp;
//res[10] = egamma_unp;
//res[12] = jet_unp;
//res[14] = jet_unp;
//res[16] = tau_unp;
//res[18] = tau_unp;
//res[20] = etsum_unp;
res[24] = ext_unp;
//res[22] = empty link no data
res[26] = ext_unp;
Expand Down