Skip to content
Snippets Groups Projects
Commit 84dc6a85 authored by Knut Zoch's avatar Knut Zoch
Browse files

Adjust available bandwidth for 2D IBL modules to 320

Former-commit-id: 247685b4ba6a8db0cf56fe2832cc213ed563d439
parent 8d393123
No related branches found
No related tags found
No related merge requests found
......@@ -731,7 +731,14 @@ double PixelMainMon::getBitStreamFraction(const Identifier& WaferID, const unsig
// Assumed available bandwidth per layer
double mbits_sec = 80.;
if (layer == PixLayer::kB0 || layer == PixLayer::kB1 || layer == PixLayer::kIBL) mbits_sec = 160.;
if (layer == PixLayer::kB0 || layer == PixLayer::kB1) mbits_sec = 160.;
if (layer == PixLayer::kIBL) {
if (m_pixelid->eta_module(WaferID) < 6 && m_pixelid->eta_module(WaferID) > -7) {
mbits_sec = 320.; // 2D modules are 2 FEs with 160 Mbit/s each
} else {
mbits_sec = 160.;
}
}
// Average bits available per event, assuming 100k trigger rate
double avg_available_bits = mbits_sec / 0.1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment