Skip to content

Commit 35bf2b2

Browse files
authored
templating the rest (#3734)
* templating the rest * reply to Victor comments * fix for formatter #1 * removed commented code
1 parent f36c90d commit 35bf2b2

File tree

4 files changed

+340
-430
lines changed

4 files changed

+340
-430
lines changed

PWGCF/MultiparticleCorrelations/Core/MuPa-Configurables.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ Configurable<int> cNContributors_min{
9090
Configurable<int> cNContributors_max{"cNContributors_max", 1000000000,
9191
"maximum number of vertex contributors"};
9292

93+
Configurable<int> cImpactParameter_min{
94+
"cImpactParameter_min", -1,
95+
"minimum value of impact parameter (can be used only for sim) (set to -1 to ignore)"};
96+
Configurable<int> cImpactParameter_max{"cImpactParameter_max", 1000000000,
97+
"maximum value of impact parameter (can be used only for sim)"};
98+
9399
// Particle cuts:
94100
Configurable<float> pt_min{"pt_min", 0.2, "minimum track pt value [GeV/c]"};
95101
Configurable<float> pt_max{"pt_max", 5.0, "maximum track pt value [GeV/c]"};

PWGCF/MultiparticleCorrelations/Core/MuPa-Enums.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ enum eEventHistograms {
4848
eVertex_y,
4949
eVertex_z,
5050
eNContributors, // Number of tracks used for the vertex
51+
eImpactParameter,
5152
eEventHistograms_N
5253
};
5354

0 commit comments

Comments
 (0)