]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
reverting changes commited by mistake
authordainesea <dainesea@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 13 Jun 2013 23:09:59 +0000 (23:09 +0000)
committerdainesea <dainesea@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 13 Jun 2013 23:09:59 +0000 (23:09 +0000)
PWGHF/vertexingHF/AliAODRecoDecayHF3Prong.h
PWGHF/vertexingHF/AliAnalysisVertexingHF.cxx

index a5c3b84744111357e63b57ae498e1a2efb75f269..6c56d569a16efe1e51d6d9edca8c1a6ac79688ca 100644 (file)
@@ -88,9 +88,9 @@ class AliAODRecoDecayHF3Prong : public AliAODRecoDecayHF {
 
  private:
 
-  Double32_t fSigmaVert; // track dispersion around the secondary vertex
-  Double32_t fDist12toPrim; //distance prim vert - 2 opposite sign track vertex 
-  Double32_t fDist23toPrim; //distance prim vert - 2 opposite sign track vertex
+  Double_t fSigmaVert; // track dispersion around the secondary vertex
+  Double_t fDist12toPrim; //distance prim vert - 2 opposite sign track vertex 
+  Double_t fDist23toPrim; //distance prim vert - 2 opposite sign track vertex
 
 
 
index 91088c43eaa87993667eec7af5020cdccb259521..ee537d1065f30c316ee39d01fb6f335ef1e364dc 100644 (file)
@@ -709,7 +709,6 @@ void AliAnalysisVertexingHF::FindCandidates(AliVEvent *event,
        if(fInputAOD) {
          const AliVTrack *trackVV0 = dynamic_cast<const AliVTrack*>(v0);
          if(trackVV0)  trackV0 = new AliNeutralTrackParam(trackVV0);
-         trackV0->Print();
        } else {  
          Double_t xyz[3], pxpypz[3];
          esdV0->XvYvZv(xyz);
@@ -718,8 +717,6 @@ void AliAnalysisVertexingHF::FindCandidates(AliVEvent *event,
          trackV0 = new AliNeutralTrackParam(xyz,pxpypz,cv,0);
        }
 
-       trackV0->PropagateToDCA(fV1,fBzkG,kVeryBig);
-       if(trackV0->GetSigmaY2()<0. || trackV0->GetSigmaZ2()<0.) continue; // this is insipired by the AliITStrackV2::Invariant() checks
 
        // Fill in the object array to create the cascade
        twoTrackArrayCasc->AddAt(postrack1,0);
@@ -2730,10 +2727,6 @@ void AliAnalysisVertexingHF::SelectTracksAndCopyVertex(const AliVEvent *event,
       Bool_t useTPC=kTRUE;
       if(fUseTOFPID){
        Double_t nsigmatofPi= fPidResponse->NumberOfSigmasTOF(esdt,AliPID::kPion);
-       printf("nsigmatofPi %f\n",nsigmatofPi);
-       if ((esdt->GetStatus()&AliVTrack::kTOFout)) printf("TOFout\n");
-       //if ((esdt->GetStatus()&AliVTrack::kTIME)==0) printf("nokTIME\n");
-
        if(nsigmatofPi>-990. && (nsigmatofPi<-fnSigmaTOFPionLow || nsigmatofPi>fnSigmaTOFPionHi)){
          CLRBIT(seleFlags[nSeleTrks],kBitPionCompat);
        }
@@ -2753,7 +2746,6 @@ void AliAnalysisVertexingHF::SelectTracksAndCopyVertex(const AliVEvent *event,
          CLRBIT(seleFlags[nSeleTrks],kBitPionCompat);
        }
        Double_t nsigmatpcK= fPidResponse->NumberOfSigmasTPC(esdt,AliPID::kKaon);
-       //printf("nsigmatpcK %f\n",nsigmatpcK);
        if(nsigmatpcK>-990. && (nsigmatpcK<-fnSigmaTPCKaonLow || nsigmatpcK>fnSigmaTPCKaonHi)){
          CLRBIT(seleFlags[nSeleTrks],kBitKaonCompat);
        }