Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -134,29 +134,29 @@
Configurable<bool> flattenicityforLossCorrRec{"flattenicityforLossCorrRec", true,
"Flattenicity from Rec Tracks are used for Signal and Event loss calculations"};
// Common Configurable parameters for V0 selection
Configurable<float> v0setting_dcav0dau{"v0setting_dcav0dau", 1,

Check warning on line 137 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"DCA V0 Daughters"};
Configurable<float> v0setting_dcapostopv{"v0setting_dcapostopv", 0.06,

Check warning on line 139 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"DCA Pos To PV"};
Configurable<float> v0setting_dcanegtopv{"v0setting_dcanegtopv", 0.06,

Check warning on line 141 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"DCA Neg To PV"};
Configurable<float> v0setting_rapidity{"v0setting_rapidity", 0.5,

Check warning on line 143 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"V0 rapidity cut"};

// Configurable parameters for V0 selection for KOs
Configurable<double> v0setting_cospaK0s{"v0setting_cospaK0s", 0.97,

Check warning on line 147 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"V0 CosPA for K0s"};
Configurable<float> v0setting_radiusK0s{"v0setting_radiusK0s", 0.5,

Check warning on line 149 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"v0radius for K0s"};
Configurable<float> v0setting_ctauK0s{"v0setting_ctauK0s", 20,

Check warning on line 151 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"v0ctau for K0s"};
Configurable<float> v0setting_massrejectionK0s{"v0setting_massrejectionK0s", 0.005,

Check warning on line 153 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"Competing Mass Rejection cut for K0s"};

// Configurable parameters for V0 selection for Lambda
Configurable<double> v0setting_cospaLambda{"v0setting_cospaLambda", 0.995,

Check warning on line 157 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"V0 CosPA for Lambda"};
Configurable<float> v0setting_radiusLambda{"v0setting_radiusLambda", 0.5,

Check warning on line 159 in PWGLF/Tasks/Strangeness/lambdak0sflattenicity.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
"v0radius for Lambda"};
Configurable<float> v0setting_ctauLambda{"v0setting_ctauLambda", 30,
"v0ctau for Lambda"};
Expand Down Expand Up @@ -1192,7 +1192,7 @@

flattenicity =
1.0 - getFlatenicity({rhoLatticeFV0AMC.data(), rhoLatticeFV0AMC.size()});
rEventSelection.fill(HIST("hTrueFV0amplvsFlat"), multFV0, estimator[2]);
rEventSelection.fill(HIST("hTrueFV0amplvsFlat"), multFV0, estimator[2]);
return flattenicity;
}
// ====================== Flattenicity estimation ends =====================
Expand Down
Loading