You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Take collision contexts (per timeframe) from external files for instance for data-anchoring use-case. Needs timeframeID and number of orbits to be given as well.");
221
+
"import-external", bpo::value<std::string>(&optvalues.external_path)->default_value(""),"Take collision contexts (per timeframe) from external files for instance for data-anchoring use-case. Needs timeframeID and number of orbits to be given as well.")(
222
+
"nontrivial-mu-distribution", bpo::value<std::string>(&optvalues.nontrivial_mu_distribution)->default_value(""), "Distribution for MU(BC)");
221
223
222
224
options.add_options()("help,h", "Produce help message.");
223
225
@@ -397,6 +399,37 @@ int main(int argc, char* argv[])
397
399
auto mode = ispecs[id].syncmode;
398
400
if (mode == InteractionLockMode::NOLOCK) {
399
401
auto sampler = std::make_unique<o2::steer::InteractionSampler>();
402
+
TH1F* mu_hist = nullptr;
403
+
404
+
// we check if there is a realistic bunch crossing distribution available
0 commit comments