Skip to content

Commit ed9f5b9

Browse files
author
David Dobrigkeit Chinellato
committed
Small adjustments
1 parent 9df3fb4 commit ed9f5b9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Common/TableProducer/trackPropagationTester.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
#include "Framework/HistogramRegistry.h"
4040
#include "DataFormatsCalibration/MeanVertexObject.h"
4141
#include "CommonConstants/GeomConstants.h"
42+
#include "Common/Tools/TrackTuner.h"
4243
#include "Common/Tools/TrackPropagationModule.h"
4344
#include "Common/Tools/StandardCCDBLoader.h"
4445

Common/Tools/TrackPropagationModule.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ class TrackPropagationModule
8989
o2::track::TrackParametrization<float> mTrackPar;
9090
o2::track::TrackParametrizationWithError<float> mTrackParCov;
9191

92-
template <typename TConfigurableGroup, typename TTrackTuner, typename TInitContext, typename THistoRegistry>
93-
void init(TConfigurableGroup const& cGroup, TTrackTuner& trackTunerObj, THistoRegistry& registry, TInitContext& initContext)
92+
template <typename TConfigurableGroup, typename TInitContext, typename THistoRegistry>
93+
void init(TConfigurableGroup const& cGroup, TrackTuner& trackTunerObj, THistoRegistry& registry, TInitContext& initContext)
9494
{
9595
// Checking if the tables are requested in the workflow and enabling them
9696
fillTracks = isTableRequiredInWorkflow(initContext, "Tracks");
@@ -152,8 +152,8 @@ class TrackPropagationModule
152152
registry.template add<TH2>("hDCAzVsPtMC", "hDCAzVsPtMC", o2::framework::kTH2F, {axisBinsDCA, cGroup.axisPtQA});
153153
}
154154

155-
template <bool isMc, typename TConfigurableGroup, typename TTrackTuner, typename TCCDBLoader, typename TCollisions, typename TTracks, typename TOutputGroup, typename THistoRegistry>
156-
void fillTrackTables(TConfigurableGroup const& cGroup, TTrackTuner& trackTunerObj, TCCDBLoader const& ccdbLoader, TCollisions const& collisions, TTracks const& tracks, TOutputGroup& cursors, THistoRegistry& registry)
155+
template <bool isMc, typename TConfigurableGroup, typename TCCDBLoader, typename TCollisions, typename TTracks, typename TOutputGroup, typename THistoRegistry>
156+
void fillTrackTables(TConfigurableGroup const& cGroup, TrackTuner& trackTunerObj, TCCDBLoader const& ccdbLoader, TCollisions const& collisions, TTracks const& tracks, TOutputGroup& cursors, THistoRegistry& registry)
157157
{
158158
if (!fillTracks) {
159159
return; // suppress everything

PWGLF/TableProducer/Strangeness/propagationService.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "Common/Core/trackUtilities.h"
3131
#include "Common/DataModel/TrackSelectionTables.h"
3232
#include "Common/Tools/StandardCCDBLoader.h"
33+
#include "Common/Tools/TrackTuner.h"
3334
#include "Common/Tools/TrackPropagationModule.h"
3435

3536
#include "CCDB/BasicCCDBManager.h"

0 commit comments

Comments
 (0)