File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ struct HFD0CandidateSelector {
152152 return false ;
153153 }
154154 if (hfCandProng2.decayLengthNormalised () * hfCandProng2.decayLengthNormalised () < 1.0 ) {
155- return false ;
155+ // return false; //add back when getter fixed
156156 }
157157 return true ;
158158 }
@@ -182,7 +182,7 @@ struct HFD0CandidateSelector {
182182 }
183183 }
184184
185- if (TMath::Abs (trackPion.signed1Pt ()) < TMath::Abs (cuts[pTBin][4 ]) || TMath::Abs (trackKaon.signed1Pt ()) < TMath::Abs (cuts[pTBin][3 ])) {
185+ if (TMath::Abs (trackPion.pt ()) < TMath::Abs (cuts[pTBin][4 ]) || TMath::Abs (trackKaon.pt ()) < TMath::Abs (cuts[pTBin][3 ])) {
186186 return false ; // cut on daughter pT
187187 }
188188 if (TMath::Abs (trackPion.dcaprim0 ()) > cuts[pTBin][6 ] || TMath::Abs (trackKaon.dcaprim0 ()) > cuts[pTBin][5 ]) {
@@ -209,7 +209,7 @@ struct HFD0CandidateSelector {
209209 template <typename T>
210210 bool validTPCPID (const T& track)
211211 {
212- if (TMath::Abs (track.signed1Pt ()) < d_pidTPCMinpT || TMath::Abs (track.signed1Pt ()) >= d_pidTPCMaxpT) {
212+ if (TMath::Abs (track.pt ()) < d_pidTPCMinpT || TMath::Abs (track.pt ()) >= d_pidTPCMaxpT) {
213213 return false ;
214214 }
215215 // if (track.TPCNClsFindable() < d_TPCNClsFindablePIDCut) return false;
@@ -223,7 +223,7 @@ struct HFD0CandidateSelector {
223223 template <typename T>
224224 bool validTOFPID (const T& track)
225225 {
226- if (TMath::Abs (track.signed1Pt ()) < d_pidTOFMinpT || TMath::Abs (track.signed1Pt ()) >= d_pidTOFMaxpT) {
226+ if (TMath::Abs (track.pt ()) < d_pidTOFMinpT || TMath::Abs (track.pt ()) >= d_pidTOFMaxpT) {
227227 return false ;
228228 }
229229 return true ;
You can’t perform that action at this time.
0 commit comments