Skip to content

Commit e8c5705

Browse files
Jinhyun ParkJinhyun Park
authored andcommitted
Updated template arguement
1 parent 8f5c1bf commit e8c5705

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

PWGHF/TableProducer/treeCreatorToXiPiQa.cxx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ struct HfTreeCreatorToXiPiQa {
651651
}
652652
}
653653

654-
template <typename CollType, typename McCollType, typename CandType>
654+
template <typename McCollType, typename CollType, typename CandType>
655655
void fillParticle(const CandType& mcParticles, const CollType& collisions)
656656
{
657657
for (const auto& particle : mcParticles) {
@@ -884,7 +884,7 @@ struct HfTreeCreatorToXiPiQa {
884884
// Filling particle properties if requested
885885
if (fillGenTable) {
886886
rowCandidateParticles.reserve(mcParticles.size());
887-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
887+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
888888
}
889889
}
890890

@@ -909,7 +909,7 @@ struct HfTreeCreatorToXiPiQa {
909909
// Filling particle properties if requested
910910
if (fillGenTable) {
911911
rowCandidateParticles.reserve(mcParticles.size());
912-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
912+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
913913
}
914914
}
915915

@@ -934,7 +934,7 @@ struct HfTreeCreatorToXiPiQa {
934934
// Filling particle properties if requested
935935
if (fillGenTable) {
936936
rowCandidateParticles.reserve(mcParticles.size());
937-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
937+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
938938
}
939939
}
940940

@@ -959,7 +959,7 @@ struct HfTreeCreatorToXiPiQa {
959959
// Filling particle properties if requested
960960
if (fillGenTable) {
961961
rowCandidateParticles.reserve(mcParticles.size());
962-
fillParticle<MyEventTableWithMcLabels, McCollisionsCentFT0Ms>(mcParticles, collsWithMcLable);
962+
fillParticle<McCollisionsCentFT0Cs>(mcParticles, collsWithMcLable);
963963
}
964964
}
965965

@@ -984,7 +984,7 @@ struct HfTreeCreatorToXiPiQa {
984984
// Filling particle properties if requested
985985
if (fillGenTable) {
986986
rowCandidateParticles.reserve(mcParticles.size());
987-
fillParticle<MyEventTableWithMcLabels, McCollisionsCentFT0Ms>(mcParticles, collsWithMcLable);
987+
fillParticle<McCollisionsCentFT0Ms>(mcParticles, collsWithMcLable);
988988
}
989989
}
990990

@@ -1009,7 +1009,7 @@ struct HfTreeCreatorToXiPiQa {
10091009
// Filling particle properties if requested
10101010
if (fillGenTable) {
10111011
rowCandidateParticles.reserve(mcParticles.size());
1012-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
1012+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
10131013
}
10141014
}
10151015

@@ -1034,7 +1034,7 @@ struct HfTreeCreatorToXiPiQa {
10341034
// Filling particle properties if requested
10351035
if (fillGenTable) {
10361036
rowCandidateParticles.reserve(mcParticles.size());
1037-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
1037+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
10381038
}
10391039
}
10401040

@@ -1070,7 +1070,7 @@ struct HfTreeCreatorToXiPiQa {
10701070
// Filling particle properties if requested
10711071
if (fillGenTable) {
10721072
rowCandidateParticles.reserve(mcParticles.size());
1073-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
1073+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
10741074
}
10751075
}
10761076

@@ -1095,7 +1095,7 @@ struct HfTreeCreatorToXiPiQa {
10951095
// Filling particle properties if requested
10961096
if (fillGenTable) {
10971097
rowCandidateParticles.reserve(mcParticles.size());
1098-
fillParticle<MyEventTableWithMcLabels, McCollisionsCentFT0Ms>(mcParticles, collsWithMcLable);
1098+
fillParticle<McCollisionsCentFT0Cs>(mcParticles, collsWithMcLable);
10991099
}
11001100
}
11011101

@@ -1120,7 +1120,7 @@ struct HfTreeCreatorToXiPiQa {
11201120
// Filling particle properties if requested
11211121
if (fillGenTable) {
11221122
rowCandidateParticles.reserve(mcParticles.size());
1123-
fillParticle<MyEventTableWithMcLabels, McCollisionsCentFT0Ms>(mcParticles, collsWithMcLable);
1123+
fillParticle<McCollisionsCentFT0Ms>(mcParticles, collsWithMcLable);
11241124
}
11251125
}
11261126

@@ -1145,7 +1145,7 @@ struct HfTreeCreatorToXiPiQa {
11451145
// Filling particle properties if requested
11461146
if (fillGenTable) {
11471147
rowCandidateParticles.reserve(mcParticles.size());
1148-
fillParticle<MyEventTableWithMcLabels, aod::McCollisions>(mcParticles, collsWithMcLable);
1148+
fillParticle<aod::McCollisions>(mcParticles, collsWithMcLable);
11491149
}
11501150
}
11511151

0 commit comments

Comments
 (0)