Skip to content
Snippets Groups Projects
Commit f744e798 authored by Roel Aaij's avatar Roel Aaij Committed by Dorothea Vom Bruch
Browse files

Fix average sizes now that VP and VPRetina are seen as the same

parent 9c1f03ef
No related branches found
No related tags found
1 merge request!814Use proper bank size instead of offsets throughout and propagate bank types
......@@ -20,7 +20,7 @@ enum class BankTypes { VP, UT, FT, MUON, ODIN, MCTracks, MCVertices, Rich1, Rich
// Average size of all raw banks of a given type per
// subdetector, in kB, measured in simulated minbias events.
// FIXME: make this configurable
const std::unordered_map<BankTypes, float> BankSizes = {{BankTypes::VP, 20.f},
const std::unordered_map<BankTypes, float> BankSizes = {{BankTypes::VP, 40.f},
{BankTypes::UT, 12.f},
{BankTypes::FT, 15.f},
{BankTypes::MUON, 4.f},
......@@ -34,7 +34,7 @@ const std::unordered_map<BankTypes, float> BankSizes = {{BankTypes::VP, 20.f},
// Average measured event size, measured
// FIXME: make this configurable
constexpr float average_event_size = 65.f;
constexpr float average_event_size = 150.f;
// Safety margin
// FIXME: make this configurable
constexpr float bank_size_fudge_factor = 1.5f;
......
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