You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rPtAnalysis.get<TH1>(HIST("hNV0s"))->GetXaxis()->SetBinLabel(1, "All V0s");
@@ -825,12 +825,12 @@ struct V0PtInvMassPlots {
825
825
// Checking that the V0 is a true K0s/Lambdas/Antilambdas and then filling the parameter histograms and the invariant mass plots for different cuts (which are taken from namespace)
if (!acceptV0(v0, posDaughterTrack, negDaughterTrack, false)) { // V0 Selections
828
+
if (!acceptV0(v0, posDaughterTrack, negDaughterTrack)) { // V0 Selections
829
829
continue;
830
830
}
831
831
// kzero analysis
832
832
if (kzeroAnalysis == true) {
833
-
if (acceptK0sh(v0, posDaughterTrack, negDaughterTrack, false)) { // K0sh Selection
833
+
if (acceptK0sh(v0, posDaughterTrack, negDaughterTrack)) { // K0sh Selection
834
834
// K0sh Signal Split Numerator Start
835
835
for (int i = 0; i < nKaonHistograms; i++) {
836
836
if (kaonptedgevalues[i] <= v0.pt() && v0.pt() < kaonptedgevalues[i + 1]) { // finding v0s with pt within the range of our bin edges for K0sh Splitting Numerator
@@ -864,7 +864,7 @@ struct V0PtInvMassPlots {
864
864
}
865
865
// lambda analysis
866
866
if (lambdaAnalysis == true) {
867
-
if (acceptLambda(v0, posDaughterTrack, negDaughterTrack, false)) { // Lambda Selections
867
+
if (acceptLambda(v0, posDaughterTrack, negDaughterTrack)) { // Lambda Selections
// Checking that the V0 is a true K0s/Lambdas/Antilambdas and then filling the parameter histograms and the invariant mass plots for different cuts (which are taken from namespace)
// Checking that the V0 is a true K0s/Lambdas/Antilambdas and then filling the parameter histograms and the invariant mass plots for different cuts (which are taken from namespace)
// Checking that the V0 is a true K0s/Lambdas/Antilambdas and then filling the parameter histograms and the invariant mass plots for different cuts (which are taken from namespace)
if (!acceptV0Derived(v0, posDaughterTrack, negDaughterTrack, true)) { // V0 Selections
1135
+
if (!acceptV0Derived(v0, posDaughterTrack, negDaughterTrack)) {// V0 Selections
1136
1136
continue;
1137
1137
}
1138
1138
// kzero analysis
1139
1139
if (kzeroAnalysis == true) {
1140
-
if (acceptK0sh(v0, posDaughterTrack, negDaughterTrack, true)) { // K0sh Selection
1140
+
if (acceptK0sh(v0, posDaughterTrack, negDaughterTrack)) { // K0sh Selection
1141
1141
// K0sh Signal Split Numerator Start
1142
1142
for (int i = 0; i < nKaonHistograms; i++) {
1143
1143
if (kaonptedgevalues[i] <= v0.pt() && v0.pt() < kaonptedgevalues[i + 1]) { // finding v0s with pt within the range of our bin edges for K0sh Splitting Numerator
@@ -1168,7 +1168,7 @@ struct V0PtInvMassPlots {
1168
1168
}
1169
1169
// lambda analysis
1170
1170
if (lambdaAnalysis == true) {
1171
-
if (acceptLambda(v0, posDaughterTrack, negDaughterTrack, true)) { // Lambda Selections
1171
+
if (acceptLambda(v0, posDaughterTrack, negDaughterTrack)) { // Lambda Selections
0 commit comments