Skip to content

Commit 98ae264

Browse files
committed
change in a comment
1 parent f06546a commit 98ae264

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

PWGUD/TableProducer/tauEventTableProducer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ struct TauEventTableProducer {
301301
return false; // TPC chi2
302302
if (cutGlobalTrack.cutGoodITSTPCmatching) {
303303
if (track.itsChi2NCl() < 0.)
304-
return false; // TPC chi2
304+
return false; // good ITS-TPC matching means ITS ch2 is not negative
305305
}
306306
// TOF
307307
if (track.hasTOF()) {

PWGUD/TableProducer/twoTracksEventTableProducer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ struct TwoTracksEventTableProducer {
327327
return false; // TPC chi2
328328
if (cutGlobalTrack.cutGoodITSTPCmatching) {
329329
if (track.itsChi2NCl() < 0.)
330-
return false; // TPC chi2
330+
return false; // good ITS-TPC matching means ITS ch2 is not negative
331331
}
332332
// TOF
333333
if (track.hasTOF()) {

PWGUD/Tasks/upcTauRl.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ struct UpcTauRl {
768768
return false; // TPC chi2
769769
if (cutGlobalTrack.cutGoodITSTPCmatching) {
770770
if (track.itsChi2NCl() < 0.)
771-
return false; // TPC chi2
771+
return false; // good ITS-TPC matching means ITS ch2 is not negative
772772
}
773773
// TOF
774774
if (track.hasTOF()) {

0 commit comments

Comments
 (0)