File tree Expand file tree Collapse file tree 1 file changed +2
-20
lines changed
Expand file tree Collapse file tree 1 file changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -623,16 +623,7 @@ struct Kstarqa {
623623 if (candidate.hasTOF () && std::abs (candidate.tofNSigmaPi ()) < selectionConfig.nsigmaCutTOFPi && candidate.beta () > cBetaCutTOF) {
624624 return true ;
625625 }
626- }
627- // else if (onlyTOFHIT) {
628- // if (candidate.hasTOF() && std::abs(candidate.tofNSigmaPi()) < selectionConfig.nsigmaCutTOFPi && candidate.beta() > cBetaCutTOF) {
629- // return true;
630- // }
631- // if (!candidate.hasTOF() && std::abs(candidate.tpcNSigmaPi()) < selectionConfig.nsigmaCutTPCPi) {
632- // return true;
633- // }
634- // }
635- else if (onlyTPC) {
626+ } else if (onlyTPC) {
636627 if (std::abs (candidate.tpcNSigmaPi ()) < selectionConfig.nsigmaCutTPCPi ) {
637628 return true ;
638629 }
@@ -649,16 +640,7 @@ struct Kstarqa {
649640 if (candidate.hasTOF () && std::abs (candidate.tofNSigmaKa ()) < selectionConfig.nsigmaCutTOFKa && candidate.beta () > cBetaCutTOF) {
650641 return true ;
651642 }
652- }
653- // else if (onlyTOFHIT) {
654- // if (candidate.hasTOF() && std::abs(candidate.tofNSigmaKa()) < selectionConfig.nsigmaCutTOFKa && candidate.beta() > cBetaCutTOF) {
655- // return true;
656- // }
657- // if (!candidate.hasTOF() && std::abs(candidate.tpcNSigmaKa()) < selectionConfig.nsigmaCutTPCKa) {
658- // return true;
659- // }
660- // }
661- else if (onlyTPC) {
643+ } else if (onlyTPC) {
662644 if (std::abs (candidate.tpcNSigmaKa ()) < selectionConfig.nsigmaCutTPCKa ) {
663645 return true ;
664646 }
You can’t perform that action at this time.
0 commit comments