Skip to content

Commit d2841ec

Browse files
committed
Please consider the following formatting changes
1 parent f3e68e4 commit d2841ec

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

PWGUD/Tasks/upcTauTau13topo.cxx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,7 @@ struct TauTau13topo {
16371637
// auto const electronMass = pdg->Mass(11); // 11 kElectron
16381638
auto const pionMass = MassPiPlus;
16391639
auto const electronMass = MassElectron;
1640-
1640+
16411641
// TParticlePDG* pion = pdg->GetParticle(211);
16421642
// TParticlePDG* electron = pdg->GetParticle(11);
16431643
bool flagGlobalCheck = true;
@@ -2880,7 +2880,7 @@ struct TauTau13topo {
28802880
} // end of pion check
28812881
// electron from tau
28822882
if (std::abs(daughter.pdgCode()) == 11) { // == 11
2883-
if (daughter.pdgCode() == 11) // 11
2883+
if (daughter.pdgCode() == 11) // 11
28842884
flagElPlusElMinus = true;
28852885
registryMC.get<TH1>(HIST("electronMC/hMCeta"))->Fill(daughter.eta());
28862886
registryMC.get<TH1>(HIST("electronMC/hMCphi"))->Fill(daughter.phi());
@@ -3003,8 +3003,7 @@ struct TauTau13topo {
30033003
void processEfficiencyMCSG(aod::UDMcCollision const& mcCollision,
30043004
soa::SmallGroups<soa::Join<aod::UDMcCollsLabels, aod::UDCollisions, aod::UDCollisionsSels, aod::SGCollisions, aod::UDZdcsReduced>> const& collisions,
30053005
LabeledTracks const& tracks,
3006-
aod::UDMcParticles const& mcParticles
3007-
)
3006+
aod::UDMcParticles const& mcParticles)
30083007
{
30093008
if (verbose) {
30103009
LOGF(info, "<tautau13topo_MC> GeneratorIDtot %d", mcCollision.generatorsID());
@@ -3312,7 +3311,7 @@ struct TauTau13topo {
33123311
for (auto const& track : groupedTracks) {
33133312
// all tracks
33143313
if (track.has_udMcParticle()) {
3315-
//
3314+
//
33163315
} else {
33173316
// ghost track
33183317
nGhostTracks++;

0 commit comments

Comments
 (0)