@@ -71,7 +71,7 @@ class FemtoUniverseV0Selection
7171 // / Initializes histograms for the task
7272 template <o2::aod::femtouniverseparticle::ParticleType part,
7373 o2::aod::femtouniverseparticle::ParticleType daugh,
74- typename cutContainerType >
74+ typename CutContainerType >
7575 void init (HistogramRegistry* registry);
7676
7777 template <typename C, typename V, typename T>
@@ -84,8 +84,8 @@ class FemtoUniverseV0Selection
8484
8585 // / \todo for the moment the PID of the tracks is factored out into a separate
8686 // / field, hence 5 values in total \\ASK: what does it mean?
87- template <typename cutContainerType , typename C, typename V, typename T>
88- std::array<cutContainerType , 5 > getCutContainer (C const & col, V const & v0,
87+ template <typename CutContainerType , typename C, typename V, typename T>
88+ std::array<CutContainerType , 5 > getCutContainer (C const & col, V const & v0,
8989 T const & posTrack,
9090 T const & negTrack);
9191
@@ -273,7 +273,7 @@ class FemtoUniverseV0Selection
273273
274274template <o2::aod::femtouniverseparticle::ParticleType part,
275275 o2::aod::femtouniverseparticle::ParticleType daugh,
276- typename cutContainerType >
276+ typename CutContainerType >
277277void FemtoUniverseV0Selection::init (HistogramRegistry* registry)
278278{
279279 if (registry) {
@@ -288,7 +288,7 @@ void FemtoUniverseV0Selection::init(HistogramRegistry* registry)
288288 // / \todo this should be an automatic check in the parent class, and the
289289 // / return type should be templated
290290 size_t nSelections = getNSelections ();
291- if (nSelections > 8 * sizeof (cutContainerType )) {
291+ if (nSelections > 8 * sizeof (CutContainerType )) {
292292 LOG (fatal) << " FemtoUniverseV0Cuts: Number of selections to large for your "
293293 " container - quitting!" ;
294294 }
@@ -332,11 +332,11 @@ void FemtoUniverseV0Selection::init(HistogramRegistry* registry)
332332
333333 posDaughTrack.init <aod::femtouniverseparticle::ParticleType::kV0Child ,
334334 aod::femtouniverseparticle::TrackType::kPosChild ,
335- aod::femtouniverseparticle::cutContainerType >(
335+ aod::femtouniverseparticle::CutContainerType >(
336336 mHistogramRegistry );
337337 negDaughTrack.init <aod::femtouniverseparticle::ParticleType::kV0Child ,
338338 aod::femtouniverseparticle::TrackType::kNegChild ,
339- aod::femtouniverseparticle::cutContainerType >(
339+ aod::femtouniverseparticle::CutContainerType >(
340340 mHistogramRegistry );
341341
342342 mHistogramRegistry ->add (" LambdaQA/hInvMassLambdaNoCuts" , " No cuts" , kTH1F ,
@@ -542,13 +542,13 @@ void FemtoUniverseV0Selection::fillLambdaQA(C const& /*col*/, V const& v0,
542542
543543// / the CosPA of V0 needs as argument the posXYZ of collisions vertex so we need
544544// / to pass the collsion as well
545- template <typename cutContainerType , typename C, typename V, typename T>
546- std::array<cutContainerType , 5 >
545+ template <typename CutContainerType , typename C, typename V, typename T>
546+ std::array<CutContainerType , 5 >
547547 FemtoUniverseV0Selection::getCutContainer (C const & /* col*/ , V const & v0, T const & posTrack, T const & negTrack)
548548{
549- auto outputPosTrack = posDaughTrack.getCutContainer <cutContainerType >(posTrack);
550- auto outputNegTrack = negDaughTrack.getCutContainer <cutContainerType >(negTrack);
551- cutContainerType output = 0 ;
549+ auto outputPosTrack = posDaughTrack.getCutContainer <CutContainerType >(posTrack);
550+ auto outputNegTrack = negDaughTrack.getCutContainer <CutContainerType >(negTrack);
551+ CutContainerType output = 0 ;
552552 size_t counter = 0 ;
553553
554554 auto lambdaMassNominal = o2::constants::physics::MassLambda; // FIXME: Get from the common header
0 commit comments