Skip to content

Commit d7fba5b

Browse files
authored
Add files via upload
1 parent dcb6b40 commit d7fba5b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2352,7 +2352,7 @@ struct LambdaJetpolarization {
23522352
}
23532353

23542354
if (registryMCAcceptV0Lambda(v0, v0.posTrack_as<DauTracksMC>(), v0.negTrack_as<DauTracksMC>(), collision)) {
2355-
if (isMC && lPDG == 3122) { // Lambda
2355+
if (isMC && lPDG == 3122) {
23562356
if (isprimary == 1 && isDauLambda) {
23572357
V0Numbers = V0Numbers + 1;
23582358
registryData.fill(HIST("MC/hMassLambda_MC"), v0.mLambda());
@@ -2430,7 +2430,7 @@ struct LambdaJetpolarization {
24302430
}
24312431

24322432
if (registryMCAcceptV0Lambda(v0, v0.posTrack_as<DauTracksMC>(), v0.negTrack_as<DauTracksMC>(), collision)) {
2433-
if (isMC && lPDG == 3122) { // Lambda
2433+
if (isMC && lPDG == 3122) {
24342434
if (isprimary == 1 && isDauLambda) {
24352435
const auto& pos = v0.posTrack_as<DauTracksMC>();
24362436
// const auto& neg = v0.negTrack_as<DauTracksMC>();
@@ -2479,7 +2479,7 @@ struct LambdaJetpolarization {
24792479
registryData.fill(HIST("MC/TH2FprotonCosThetaPhiInJetV0"), protonCosThetaInJetV0frame, TMath::ATan2(lambdaInJet(2, 0), lambdaInJet(1, 0)));
24802480
registryData.fill(HIST("MC/TH3DLambdaMassDeltaPhiDeltaCosTheta"), v0.mLambda(), TMath::ATan2(lambdaInJet(2, 0), lambdaInJet(1, 0)), protonCosThetaInJetV0frame);
24812481
}
2482-
} else if (isMC && lPDG == -3122) { // AntiLambda
2482+
} else if (isMC && lPDG == -3122) {
24832483
if (isprimary == 1 && isDauAntiLambda) {
24842484
}
24852485

@@ -2545,11 +2545,11 @@ struct LambdaJetpolarizationMCcount {
25452545
const auto evtReconstructedAndSelected = std::find(SelectedEvents.begin(), SelectedEvents.end(), mcCollision.globalIndex()) != SelectedEvents.end();
25462546

25472547
registry.fill(HIST("hEventSelection"), 0.5);
2548-
if (!evtReconstructedAndSelected) { // Check that the event is reconstructed and that the reconstructed events pass the selection
2548+
if (!evtReconstructedAndSelected) {
25492549
return;
25502550
}
2551-
registry.fill(HIST("hEventSelection"), 1.5); // hSelAndRecoMcCollCounter
2552-
if (eventPosZselection && abs(mcCollision.posZ()) > 10.f) { // 10cm
2551+
registry.fill(HIST("hEventSelection"), 1.5);
2552+
if (eventPosZselection && abs(mcCollision.posZ()) > 10.f) {
25532553
return;
25542554
}
25552555
registry.fill(HIST("hEventSelection"), 2.5);

0 commit comments

Comments
 (0)