Skip to content

Commit

Permalink
Merge pull request #6 from alibuild/alibot-cleanup-10460
Browse files Browse the repository at this point in the history
Please consider the following formatting changes to AliceO2Group#10460
  • Loading branch information
fmazzasc authored Dec 9, 2022
2 parents 1580926 + ca6558d commit 4297db3
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)

// ------------------------------------------------------------------


#include "Framework/runDataProcessing.h"
#include "Framework/Logger.h"

Expand All @@ -63,13 +62,13 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)

o2::conf::ConfigurableParam::updateFromString(configcontext.options().get<std::string>("configKeyValues"));
o2::conf::ConfigurableParam::writeINI("o2strangeness_tracking_workflow_configuration.ini");
GID::mask_t itsSource = GID::getSourceMask(GID::ITS); // ITS tracks and clusters
GID::mask_t itsSource = GID::getSourceMask(GID::ITS); // ITS tracks and clusters

WorkflowSpec specs;
specs.emplace_back(o2::strangeness_tracking::getStrangenessTrackerSpec(itsSource));
o2::globaltracking::InputHelper::addInputSpecs(configcontext, specs, itsSource, itsSource, itsSource, useMC, itsSource);
o2::globaltracking::InputHelper::addInputSpecsPVertex(configcontext, specs, useMC); // P-vertex is always needed
o2::globaltracking::InputHelper::addInputSpecsSVertex(configcontext, specs); // S-vertex is always needed
o2::globaltracking::InputHelper::addInputSpecsSVertex(configcontext, specs); // S-vertex is always needed
specs.emplace_back(getStrangenessTrackingWriterSpec());

// configure dpl timer to inject correct firstTFOrbit: start from the 1st orbit of TF containing 1st sampled orbit
Expand All @@ -78,5 +77,4 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
// write the configuration used for the reco workflow

return std::move(specs);

}

0 comments on commit 4297db3

Please sign in to comment.