Skip to content

Commit 2fa08c6

Browse files
authored
Update femtoDreamCollisionSelection.h
Bugfix: changed hardcoded value for minimal pT used for calculating the sphericity to variable mSphericityPtmin
1 parent 832d7aa commit 2fa08c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/FemtoDream/Core/femtoDreamCollisionSelection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class FemtoDreamCollisionSelection
202202
double eta = track.eta();
203203
double px = track.px();
204204
double py = track.py();
205-
if (TMath::Abs(pt) < /*lowerPtbound*/ 0.5 || TMath::Abs(eta) > 0.8) {
205+
if (TMath::Abs(pt) < mSphericityPtmin || TMath::Abs(eta) > 0.8) {
206206
continue;
207207
}
208208

0 commit comments

Comments
 (0)