Skip to content

Commit 34bf0ae

Browse files
committed
Fix O2-linter error, clang-format error, add new task with fixed name
1 parent 11a4cd9 commit 34bf0ae

3 files changed

Lines changed: 1066 additions & 6 deletions

File tree

PWGCF/FemtoUniverse/Tasks/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ o2physics_add_dpl_workflow(femtouniverse-pair-track-track-threedrelmom-mult-kt-e
4444
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
4545
COMPONENT_NAME Analysis)
4646

47-
o2physics_add_dpl_workflow(femtouniverse-pair-track-track-spherhar-mult-kt-extended
47+
o2physics_add_dpl_workflow(femto-universe-pair-task-track-track-spher-har-mult-kt-extended
4848
SOURCES femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx
4949
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
5050
COMPONENT_NAME Analysis)
5151

52-
o2physics_add_dpl_workflow(femtouniverse-pair-track-track-spherhar-mult-kt-extended-itspid
53-
SOURCES femtoUniversePairTaskTrackTrackSpherHarMultKtExtendedITSPID.cxx
52+
o2physics_add_dpl_workflow(femto-universe-pair-task-track-track-spher-har-mult-kt-extended-its-pid
53+
SOURCES femtoUniversePairTaskTrackTrackSpherHarMultKtExtendedItsPid.cxx
5454
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
5555
COMPONENT_NAME Analysis)
5656

@@ -112,4 +112,4 @@ o2physics_add_dpl_workflow(femtouniverse-efficiency-base
112112
o2physics_add_executable(femtouniverse-cutculator
113113
SOURCES femtoUniverseCutCulator.cxx
114114
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
115-
COMPONENT_NAME Analysis)
115+
COMPONENT_NAME Analysis)

PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ struct FemtoUniversePairTaskTrackTrackSpherHarMultKtExtended {
199199

200200
/// Partition for particle 1
201201
Partition<FilteredFemtoFullParticles> partsOne = (aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kTrack)) && aod::femtouniverseparticle::sign == as<int8_t>(trackonefilter.confChargePart1) && aod::femtouniverseparticle::pt < trackonefilter.confPtHighPart1 && aod::femtouniverseparticle::pt > trackonefilter.confPtLowPart1;
202-
Partition<FilteredFemtoRecoParticles> partsOneMC = (aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kTrack)) && aod::femtouniverseparticle::sign == as<int8_t>(trackonefilter.confChargePart1) && aod::femtouniverseparticle::pt < trackonefilter.confPtHighPart1 && aod::femtouniverseparticle::pt > trackonefilter.confPtLowPart1;
202+
Partition<FilteredFemtoRecoParticles> partsOneMC = (aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kTrack)) && aod::femtouniverseparticle::sign == as<int8_t>(trackonefilter.confChargePart1) && aod::femtouniverseparticle::pt < trackonefilter.confPtHighPart1 && aod::femtouniverseparticle::pt > trackonefilter.confPtLowPart1;
203203
Partition<FemtoTruthParticles> partsOneMCTruth = aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kMCTruthTrack);
204204

205205
//
@@ -770,7 +770,7 @@ struct FemtoUniversePairTaskTrackTrackSpherHarMultKtExtended {
770770
}
771771
}
772772
}
773-
773+
774774
/// process function for to call doSameEvent with Data
775775
/// \param col subscribe to the collision table (Data)
776776
/// \param parts subscribe to the femtoUniverseParticleTable

0 commit comments

Comments
 (0)