Skip to content

Commit f6b66ca

Browse files
committed
Add configurable for use strict pid
1 parent 204839c commit f6b66ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGCF/Flow/Tasks/flowPidCme.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2722,7 +2722,8 @@ struct FlowPidCme {
27222722
template <typename CollType, typename TrackType>
27232723
void fillHistosFlowGammaDelta(const CollType& collision, const TrackType& track1, const TrackType& track2, const TrackType& track3, int nmode)
27242724
{
2725-
if (collision.qvecAmp()[detId] < nonzero) {
2725+
double nonzero2 = 1e-8;
2726+
if (collision.qvecAmp()[detId] < nonzero2) {
27262727
return;
27272728
}
27282729
auto cent = collision.centFT0C();

0 commit comments

Comments
 (0)