Skip to content

Commit bb41eaa

Browse files
authored
Please consider the following formatting changes to #10762 (#10763)
1 parent c25a48e commit bb41eaa

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

PWGLF/Tasks/Nuspex/angularCorrelationsInJets.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ struct AngularCorrelationsInJets {
547547
float pt = track.pt();
548548
float maxSigmaTPC = 4.0;
549549
float maxSigmaTOF = 3.0;
550-
550+
551551
// Loosen PID at high momentum
552552
if (pt > 1.5) {
553553
maxSigmaTPC = 3.0;
@@ -557,10 +557,10 @@ struct AngularCorrelationsInJets {
557557
maxSigmaTPC = 2.0;
558558
maxSigmaTOF = 1.0;
559559
}
560-
560+
561561
bool tpcOK = std::abs(track.tpcNSigmaProton()) < maxSigmaTPC;
562562
bool tofOK = track.hasTOF() ? std::abs(track.tofNSigmaProton()) < maxSigmaTOF : false;
563-
563+
564564
return tpcOK || tofOK;
565565
}
566566

@@ -572,7 +572,7 @@ struct AngularCorrelationsInJets {
572572
float pt = track.pt();
573573
float maxSigmaTPC = 4.0;
574574
float maxSigmaTOF = 3.0;
575-
575+
576576
// Loosen PID at high momentum
577577
if (pt > 1.5) {
578578
maxSigmaTPC = 3.0;
@@ -582,10 +582,10 @@ struct AngularCorrelationsInJets {
582582
maxSigmaTPC = 2.0;
583583
maxSigmaTOF = 1.0;
584584
}
585-
585+
586586
bool tpcOK = std::abs(track.tpcNSigmaProton()) < maxSigmaTPC;
587587
bool tofOK = track.hasTOF() ? std::abs(track.tofNSigmaProton()) < maxSigmaTOF : false;
588-
588+
589589
return tpcOK || tofOK;
590590
}
591591

@@ -1136,13 +1136,13 @@ struct AngularCorrelationsInJets {
11361136
}
11371137
if (measureCorrelations) {
11381138
if (isSmartProtonPID(jetParticle)) {
1139-
//if (isProton(jetParticle, true)) { // while debugging issue for proton correlations
1139+
// if (isProton(jetParticle, true)) { // while debugging issue for proton correlations
11401140
registryData.fill(HIST("trackProtocol"), 5); // # high purity protons
11411141
jetProtons.emplace_back(jetParticle);
11421142
registryData.fill(HIST("dcaZJetProton"), jetParticle.pt(), jetParticle.dcaZ());
11431143
}
11441144
if (isSmartAntiProtonPID(jetParticle)) {
1145-
//if (isAntiproton(jetParticle, true)) { // while debugging issue for antiproton correlations
1145+
// if (isAntiproton(jetParticle, true)) { // while debugging issue for antiproton correlations
11461146
registryData.fill(HIST("trackProtocol"), 7); // # high purity antiprotons
11471147
jetAntiprotons.emplace_back(jetParticle);
11481148
registryData.fill(HIST("dcaZJetAntiproton"), jetParticle.pt(), jetParticle.dcaZ());

0 commit comments

Comments
 (0)