]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGHF/vertexingHF/AliVertexingHFUtils.cxx
Added protection for null pointer
[u/mrichter/AliRoot.git] / PWGHF / vertexingHF / AliVertexingHFUtils.cxx
index 0162d04171595569eb1265151370e3082e58ec4d..4e1814ae2974c82e817eb5a8b92ccbdf540384f0 100644 (file)
@@ -20,6 +20,8 @@
 #include <TH1F.h>
 #include <TH2F.h>
 #include <TF1.h>
+#include <TParticle.h>
+#include "AliStack.h"
 #include "AliAODEvent.h"
 #include "AliAODMCHeader.h"
 #include "AliGenEventHeader.h"
@@ -315,6 +317,13 @@ void AliVertexingHFUtils::AveragePt(Float_t& averagePt, Float_t& errorPt,Float_t
 
 }
 //____________________________________________________________________________
+Bool_t AliVertexingHFUtils::CheckT0TriggerFired(AliAODEvent* aodEv){
+  // check if T0VTX trigger was fired, based on a workaround suggested by Alla
+  const Double32_t *mean = aodEv->GetT0TOF();
+  if(mean && mean[0]<9999.) return kTRUE;
+  else return kFALSE;
+}
+//____________________________________________________________________________
 Double_t AliVertexingHFUtils::GetTrueImpactParameterDzero(AliAODMCHeader *mcHeader, TClonesArray* arrayMC, AliAODMCParticle *partD) {
   // true impact parameter calculation for Dzero
 
@@ -485,12 +494,13 @@ TString AliVertexingHFUtils::GetGenerator(Int_t label, AliAODMCHeader* header){
   TString empty="";
   return empty;
 }
-//----------------------------------------------------------------------
-Bool_t AliVertexingHFUtils::IsTrackInjected(AliAODTrack *track,AliAODMCHeader *header,TClonesArray *arrayMC){
-  // method to check if a track comes from the signal event or from the underlying Hijing event
+//_____________________________________________________________________
+void AliVertexingHFUtils::GetTrackPrimaryGenerator(AliAODTrack *track,AliAODMCHeader *header,TClonesArray *arrayMC,TString &nameGen){
+
+  // method to check if a track comes from a given generator
 
   Int_t lab=TMath::Abs(track->GetLabel());
-  TString nameGen=GetGenerator(lab,header);
+  nameGen=GetGenerator(lab,header);
   
   //  Int_t countControl=0;
   
@@ -514,6 +524,14 @@ Bool_t AliVertexingHFUtils::IsTrackInjected(AliAODTrack *track,AliAODMCHeader *h
     // }
   }
   
+  return;
+}
+//----------------------------------------------------------------------
+Bool_t AliVertexingHFUtils::IsTrackInjected(AliAODTrack *track,AliAODMCHeader *header,TClonesArray *arrayMC){
+  // method to check if a track comes from the signal event or from the underlying Hijing event
+  TString nameGen;
+  GetTrackPrimaryGenerator(track,header,arrayMC,nameGen);
+  
   if(nameGen.IsWhitespace() || nameGen.Contains("ijing")) return kFALSE;
   
   return kTRUE;
@@ -529,3 +547,800 @@ Bool_t AliVertexingHFUtils::IsCandidateInjected(AliAODRecoDecayHF *cand, AliAODM
   }
   return kFALSE;
 }
+//____________________________________________________________________________
+Bool_t AliVertexingHFUtils::HasCascadeCandidateAnyDaughInjected(AliAODRecoCascadeHF *cand, AliAODMCHeader *header,TClonesArray *arrayMC){
+  // method to check if a cascade candidate comes from the signal event or from the underlying Hijing event
+
+  AliAODTrack* bach = cand->GetBachelor();
+  if(IsTrackInjected(bach, header, arrayMC)) {
+    AliDebug(2, "Bachelor is injected, the whole candidate is then injected");
+    return kTRUE;
+  }
+  AliAODv0* v0 = cand->Getv0();
+  Int_t nprongs = v0->GetNProngs();
+  for(Int_t i = 0; i < nprongs; i++){
+    AliAODTrack *daugh = (AliAODTrack*)v0->GetDaughter(i);
+    if(IsTrackInjected(daugh,header,arrayMC)) {
+      AliDebug(2, Form("V0 daughter number %d is injected, the whole candidate is then injected", i));
+      return kTRUE;
+    }
+  }
+  return kFALSE;
+}
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckOrigin(AliStack* stack, TParticle *mcPart, Bool_t searchUpToQuark){
+  // checking whether the mother of the particles come from a charm or a bottom quark
+
+  Int_t pdgGranma = 0;
+  Int_t mother = 0;
+  mother = mcPart->GetFirstMother();
+  Int_t istep = 0;
+  Int_t abspdgGranma =0;
+  Bool_t isFromB=kFALSE;
+  Bool_t isQuarkFound=kFALSE;
+  while (mother >0 ){
+    istep++;
+    TParticle* mcGranma = stack->Particle(mother);
+    if (mcGranma){
+      pdgGranma = mcGranma->GetPdgCode();
+      abspdgGranma = TMath::Abs(pdgGranma);
+      if ((abspdgGranma > 500 && abspdgGranma < 600) || (abspdgGranma > 5000 && abspdgGranma < 6000)){
+       isFromB=kTRUE;
+      }
+      if(abspdgGranma==4 || abspdgGranma==5) isQuarkFound=kTRUE;
+      mother = mcGranma->GetFirstMother();
+    }else{
+      printf("CheckOrigin: Failed casting the mother particle!");
+      break;
+    }
+  }
+  if(searchUpToQuark && !isQuarkFound) return 0;
+  if(isFromB) return 5;
+  else return 4;
+
+}
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckOrigin(TClonesArray* arrayMC, AliAODMCParticle *mcPart, Bool_t searchUpToQuark){
+  // checking whether the mother of the particles come from a charm or a bottom quark
+
+  Int_t pdgGranma = 0;
+  Int_t mother = 0;
+  mother = mcPart->GetMother();
+  Int_t istep = 0;
+  Int_t abspdgGranma =0;
+  Bool_t isFromB=kFALSE;
+  Bool_t isQuarkFound=kFALSE;
+  while (mother >0 ){
+    istep++;
+    AliAODMCParticle* mcGranma = dynamic_cast<AliAODMCParticle*>(arrayMC->At(mother));
+    if (mcGranma){
+      pdgGranma = mcGranma->GetPdgCode();
+      abspdgGranma = TMath::Abs(pdgGranma);
+      if ((abspdgGranma > 500 && abspdgGranma < 600) || (abspdgGranma > 5000 && abspdgGranma < 6000)){
+       isFromB=kTRUE;
+      }
+      if(abspdgGranma==4 || abspdgGranma==5) isQuarkFound=kTRUE;
+      mother = mcGranma->GetMother();
+    }else{
+      printf("AliVertexingHFUtils::CheckOrigin: Failed casting the mother particle!");
+      break;
+    }
+  }
+  if(searchUpToQuark && !isQuarkFound) return 0;
+  if(isFromB) return 5;
+  else return 4;
+
+}
+
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckD0Decay(AliStack* stack, Int_t label, Int_t* arrayDauLab){
+  // Checks the D0 decay channel. Returns 1 for the D0->Kpi case, 2 for the D0->Kpipipi case, -1 in other cases
+
+  if(label<0) return -1;
+  TParticle* mcPart = stack->Particle(label);
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=421) return -1;
+  
+  Int_t nDau=mcPart->GetNDaughters();
+  
+  if(nDau==2){
+    Int_t daughter0 = mcPart->GetDaughter(0);
+    Int_t daughter1 = mcPart->GetDaughter(1);
+    TParticle* mcPartDaughter0 = stack->Particle(daughter0);
+    TParticle* mcPartDaughter1 = stack->Particle(daughter1);
+    if(!mcPartDaughter0 || !mcPartDaughter1) return -1;
+    arrayDauLab[0]=daughter0;
+    arrayDauLab[1]=daughter1;
+    Int_t pdgCode0=mcPartDaughter0->GetPdgCode();
+    Int_t pdgCode1=mcPartDaughter1->GetPdgCode();
+    if(!(TMath::Abs(pdgCode0)==321 && TMath::Abs(pdgCode1)==211) &&
+       !(TMath::Abs(pdgCode0)==211 && TMath::Abs(pdgCode1)==321)){
+      return -1;
+    }
+    if(TMath::Abs(pdgCode0)==321 && (pdgD*pdgCode0)>0) return -1;
+    if(TMath::Abs(pdgCode1)==321 && (pdgD*pdgCode1)>0) return -1;
+    if((pdgCode0*pdgCode1)>0) return -1;
+    Double_t sumPxDau=mcPartDaughter0->Px()+mcPartDaughter1->Px();
+    Double_t sumPyDau=mcPartDaughter0->Py()+mcPartDaughter1->Py();
+    Double_t sumPzDau=mcPartDaughter0->Pz()+mcPartDaughter1->Pz();
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+    return 1;
+  }
+  
+  if(nDau==3 || nDau==4){
+    Int_t nKaons=0;
+    Int_t nPions=0;
+    Double_t sumPxDau=0.;
+    Double_t sumPyDau=0.;
+    Double_t sumPzDau=0.;
+    Int_t nFoundKpi=0;
+    Int_t labelFirstDau = mcPart->GetDaughter(0);
+    for(Int_t iDau=0; iDau<nDau; iDau++){
+      Int_t indDau = labelFirstDau+iDau;
+      if(indDau<0) return -1;
+      TParticle* dau=stack->Particle(indDau);
+      if(!dau) return -1;
+      Int_t pdgdau=dau->GetPdgCode();
+      if(TMath::Abs(pdgdau)==321){
+       if(pdgD>0 && pdgdau>0) return -1;
+       if(pdgD<0 && pdgdau<0) return -1;
+       nKaons++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>4) return -1;
+      }else if(TMath::Abs(pdgdau)==211){
+       nPions++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>4) return -1;
+      }else if(TMath::Abs(pdgdau)==113 || TMath::Abs(pdgdau)==313){
+       Int_t nResDau=dau->GetNDaughters();
+       if(nResDau!=2) return -1;
+       Int_t indFirstResDau=dau->GetDaughter(0);
+       for(Int_t resDau=0; resDau<2; resDau++){
+         Int_t indResDau=indFirstResDau+resDau;
+         if(indResDau<0) return -1;
+         TParticle* resdau=stack->Particle(indResDau);
+         if(!resdau) return -1;
+         Int_t pdgresdau=resdau->GetPdgCode();
+         if(TMath::Abs(pdgresdau)==321){
+           if(pdgD>0 && pdgresdau>0) return -1;
+           if(pdgD<0 && pdgresdau<0) return -1;
+           nKaons++;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>4) return -1;
+         }
+         if(TMath::Abs(pdgresdau)==211){
+           nPions++;
+             sumPxDau+=resdau->Px();
+             sumPyDau+=resdau->Py();
+             sumPzDau+=resdau->Pz();
+             arrayDauLab[nFoundKpi++]=indResDau;
+             if(nFoundKpi>4) return -1;
+         }
+       }
+      }else{
+       return -1;
+      }
+    }
+    if(nPions!=3) return -1;
+    if(nKaons!=1) return -1;
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -1;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -1;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -1;
+    return 2;
+  }
+  return -1;
+}
+
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckD0Decay(TClonesArray* arrayMC, AliAODMCParticle *mcPart, Int_t* arrayDauLab){
+ // Checks the D0 decay channel. Returns 1 for the D0->Kpi case, 2 for the D0->Kpipipi case, -1 in other cases
+
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=421) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+
+  if(nDau==2){
+    Int_t daughter0 = mcPart->GetDaughter(0);
+    Int_t daughter1 = mcPart->GetDaughter(1);
+    AliAODMCParticle* mcPartDaughter0 = dynamic_cast<AliAODMCParticle*>(arrayMC->At(daughter0));
+    AliAODMCParticle* mcPartDaughter1 = dynamic_cast<AliAODMCParticle*>(arrayMC->At(daughter1));
+    if(!mcPartDaughter0 || !mcPartDaughter1) return -1;
+    arrayDauLab[0]=daughter0;
+    arrayDauLab[1]=daughter1;
+    Int_t pdgCode0=mcPartDaughter0->GetPdgCode();
+    Int_t pdgCode1=mcPartDaughter1->GetPdgCode();
+    if(!(TMath::Abs(pdgCode0)==321 && TMath::Abs(pdgCode1)==211) &&
+       !(TMath::Abs(pdgCode0)==211 && TMath::Abs(pdgCode1)==321)){
+      return -1;
+    }
+    if(TMath::Abs(pdgCode0)==321 && (pdgD*pdgCode0)>0) return -1;
+    if(TMath::Abs(pdgCode1)==321 && (pdgD*pdgCode1)>0) return -1;
+    if((pdgCode0*pdgCode1)>0) return -1;
+    Double_t sumPxDau=mcPartDaughter0->Px()+mcPartDaughter1->Px();
+    Double_t sumPyDau=mcPartDaughter0->Py()+mcPartDaughter1->Py();
+    Double_t sumPzDau=mcPartDaughter0->Pz()+mcPartDaughter1->Pz();
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+    return 1;
+  }
+
+  if(nDau==3 || nDau==4){
+    Int_t nKaons=0;
+    Int_t nPions=0;
+    Double_t sumPxDau=0.;
+    Double_t sumPyDau=0.;
+    Double_t sumPzDau=0.;
+    Int_t nFoundKpi=0;
+    Int_t labelFirstDau = mcPart->GetDaughter(0);
+    for(Int_t iDau=0; iDau<nDau; iDau++){
+      Int_t indDau = labelFirstDau+iDau;
+      if(indDau<0) return -1;
+      AliAODMCParticle* dau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indDau));
+      if(!dau) return -1;
+      Int_t pdgdau=dau->GetPdgCode();
+      if(TMath::Abs(pdgdau)==321){
+       if(pdgD>0 && pdgdau>0) return -1;
+       if(pdgD<0 && pdgdau<0) return -1;
+       nKaons++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>4) return -1;
+      }else if(TMath::Abs(pdgdau)==211){
+       nPions++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>4) return -1;
+      }else if(TMath::Abs(pdgdau)==113 || TMath::Abs(pdgdau)==313){
+       Int_t nResDau=dau->GetNDaughters();
+       if(nResDau!=2) return -1;
+       Int_t indFirstResDau=dau->GetDaughter(0);
+       for(Int_t resDau=0; resDau<2; resDau++){
+         Int_t indResDau=indFirstResDau+resDau;
+         if(indResDau<0) return -1;
+         AliAODMCParticle* resdau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indResDau));
+         if(!resdau) return -1;
+         Int_t pdgresdau=resdau->GetPdgCode();
+         if(TMath::Abs(pdgresdau)==321){
+           if(pdgD>0 && pdgresdau>0) return -1;
+           if(pdgD<0 && pdgresdau<0) return -1;
+           nKaons++;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>4) return -1;
+         }
+         if(TMath::Abs(pdgresdau)==211){
+           nPions++;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>4) return -1;
+         }
+       }
+      }else{
+       return -1;
+      }
+    }
+    if(nPions!=3) return -1;
+    if(nKaons!=1) return -1;
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -1;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -1;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -1;
+    return 2;
+  }
+  return -1;
+}
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckDplusDecay(AliStack* stack, Int_t label, Int_t* arrayDauLab){
+  // Checks the Dplus decay channel. Returns 1 for the non-resonant case, 2 for the resonant case, -1 in other cases
+
+  if(label<0) return -1;
+  TParticle* mcPart = stack->Particle(label);
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=411) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+  Int_t labelFirstDau = mcPart->GetDaughter(0);
+  Int_t nKaons=0;
+  Int_t nPions=0;
+  Double_t sumPxDau=0.;
+  Double_t sumPyDau=0.;
+  Double_t sumPzDau=0.;
+  Int_t nFoundKpi=0;
+  
+  if(nDau==3 || nDau==2){
+    for(Int_t iDau=0; iDau<nDau; iDau++){
+      Int_t indDau = labelFirstDau+iDau;
+      if(indDau<0) return -1;
+      TParticle* dau=stack->Particle(indDau);
+      if(!dau) return -1;
+      Int_t pdgdau=dau->GetPdgCode();
+      if(TMath::Abs(pdgdau)==321){
+       if(pdgD*pdgdau>0) return -1;
+       nKaons++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==211){
+       if(pdgD*pdgdau<0) return -1;
+       nPions++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==313){
+       Int_t nResDau=dau->GetNDaughters();
+       if(nResDau!=2) return -1;
+       Int_t indFirstResDau=dau->GetDaughter(0);
+       for(Int_t resDau=0; resDau<2; resDau++){
+         Int_t indResDau=indFirstResDau+resDau;
+         if(indResDau<0) return -1;
+         TParticle* resdau=stack->Particle(indResDau);
+         if(!resdau) return -1;
+         Int_t pdgresdau=resdau->GetPdgCode();
+         if(TMath::Abs(pdgresdau)==321){
+           if(pdgD*pdgresdau>0) return -1;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nKaons++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         if(TMath::Abs(pdgresdau)==211){
+           if(pdgD*pdgresdau<0) return -1;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nPions++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         }
+      }else{
+       return -1;
+      }
+    }
+    if(nPions!=2) return -1;
+    if(nKaons!=1) return -1;
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+    if(nDau==3) return 1;
+    else if(nDau==2) return 2;
+  }
+  
+  return -1;
+  
+}
+
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckDplusDecay(TClonesArray* arrayMC, AliAODMCParticle *mcPart, Int_t* arrayDauLab){
+  // Checks the Dplus decay channel. Returns 1 for the non-resonant case, 2 for the resonant case, -1 in other cases
+
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=411) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+  Int_t labelFirstDau = mcPart->GetDaughter(0);
+  Int_t nKaons=0;
+  Int_t nPions=0;
+  Double_t sumPxDau=0.;
+  Double_t sumPyDau=0.;
+  Double_t sumPzDau=0.;
+  Int_t nFoundKpi=0;
+
+  if(nDau==3 || nDau==2){
+    for(Int_t iDau=0; iDau<nDau; iDau++){
+      Int_t indDau = labelFirstDau+iDau;
+      if(indDau<0) return -1;
+      AliAODMCParticle* dau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indDau));
+      if(!dau) return -1;
+      Int_t pdgdau=dau->GetPdgCode();
+      if(TMath::Abs(pdgdau)==321){
+       if(pdgD*pdgdau>0) return -1;
+       nKaons++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==211){
+       if(pdgD*pdgdau<0) return -1;
+       nPions++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==313){
+       Int_t nResDau=dau->GetNDaughters();
+       if(nResDau!=2) return -1;
+       Int_t indFirstResDau=dau->GetDaughter(0);
+       for(Int_t resDau=0; resDau<2; resDau++){
+         Int_t indResDau=indFirstResDau+resDau;
+         if(indResDau<0) return -1;
+         AliAODMCParticle* resdau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indResDau));
+         if(!resdau) return -1;
+         Int_t pdgresdau=resdau->GetPdgCode();
+         if(TMath::Abs(pdgresdau)==321){
+           if(pdgD*pdgresdau>0) return -1;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nKaons++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         if(TMath::Abs(pdgresdau)==211){
+           if(pdgD*pdgresdau<0) return -1;
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nPions++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+       }
+       }else{
+       return -1;
+      }
+    }
+    if(nPions!=2) return -1;
+    if(nKaons!=1) return -1;
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+    if(nDau==3) return 1;
+    else if(nDau==2) return 2;
+  }
+
+  return -1;
+
+}
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckDsDecay(AliStack* stack, Int_t label, Int_t* arrayDauLab){
+  // Checks the Ds decay channel. Returns 1 for Ds->phipi->KKpi, 2 for Ds->K0*K->KKpi, 3 for the non-resonant case
+
+  if(label<0) return -1;
+  TParticle* mcPart = stack->Particle(label);
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=431) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+  Int_t labelFirstDau = mcPart->GetDaughter(0);
+  Int_t nKaons=0;
+  Int_t nPions=0;
+  Double_t sumPxDau=0.;
+  Double_t sumPyDau=0.;
+  Double_t sumPzDau=0.;
+  Int_t nFoundKpi=0;
+  Bool_t isPhi=kFALSE;
+  Bool_t isk0st=kFALSE;
+  
+  if(nDau==3 || nDau==2){
+    for(Int_t iDau=0; iDau<nDau; iDau++){
+      Int_t indDau = labelFirstDau+iDau;
+      if(indDau<0) return -1;
+      TParticle* dau=stack->Particle(indDau);
+      if(!dau) return -1;
+      Int_t pdgdau=dau->GetPdgCode();
+      if(TMath::Abs(pdgdau)==321){
+       nKaons++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==211){
+       nPions++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==313 || TMath::Abs(pdgdau)==333){
+       if(TMath::Abs(pdgdau)==313) isk0st=kTRUE;
+       if(TMath::Abs(pdgdau)==333) isPhi=kTRUE;
+       Int_t nResDau=dau->GetNDaughters();
+       if(nResDau!=2) return -1;
+       Int_t indFirstResDau=dau->GetDaughter(0);
+       for(Int_t resDau=0; resDau<2; resDau++){
+         Int_t indResDau=indFirstResDau+resDau;
+         if(indResDau<0) return -1;
+         TParticle* resdau=stack->Particle(indResDau);
+         if(!resdau) return -1;
+         Int_t pdgresdau=resdau->GetPdgCode();
+         if(TMath::Abs(pdgresdau)==321){
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nKaons++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         if(TMath::Abs(pdgresdau)==211){
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nPions++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         }
+      }else{
+       return -1;
+      }
+    }
+    if(nPions!=1) return -1;
+    if(nKaons!=2) return -1;
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+    if(nDau==3) return 3;
+    else if(nDau==2){
+      if(isk0st) return 2;
+      if(isPhi) return 1;
+    }
+  }
+  
+  return -1;
+  
+}
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckDsDecay(TClonesArray* arrayMC, AliAODMCParticle *mcPart, Int_t* arrayDauLab){
+  // Checks the Ds decay channel. Returns 1 for Ds->phipi->KKpi, 2 for Ds->K0*K->KKpi, 3 for the non-resonant case
+
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=431) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+  Int_t labelFirstDau = mcPart->GetDaughter(0);
+  Int_t nKaons=0;
+  Int_t nPions=0;
+  Double_t sumPxDau=0.;
+  Double_t sumPyDau=0.;
+  Double_t sumPzDau=0.;
+  Int_t nFoundKpi=0;
+  Bool_t isPhi=kFALSE;
+  Bool_t isk0st=kFALSE;
+  
+  if(nDau==3 || nDau==2){
+    for(Int_t iDau=0; iDau<nDau; iDau++){
+      Int_t indDau = labelFirstDau+iDau;
+      if(indDau<0) return -1;
+      AliAODMCParticle* dau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indDau));
+      if(!dau) return -1;
+      Int_t pdgdau=dau->GetPdgCode();
+      if(TMath::Abs(pdgdau)==321){
+       nKaons++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==211){
+       nPions++;
+       sumPxDau+=dau->Px();
+       sumPyDau+=dau->Py();
+       sumPzDau+=dau->Pz();
+       arrayDauLab[nFoundKpi++]=indDau;
+       if(nFoundKpi>3) return -1;
+      }else if(TMath::Abs(pdgdau)==313 || TMath::Abs(pdgdau)==333){
+       if(TMath::Abs(pdgdau)==313) isk0st=kTRUE;
+       if(TMath::Abs(pdgdau)==333) isPhi=kTRUE;
+       Int_t nResDau=dau->GetNDaughters();
+       if(nResDau!=2) return -1;
+       Int_t indFirstResDau=dau->GetDaughter(0);
+       for(Int_t resDau=0; resDau<2; resDau++){
+         Int_t indResDau=indFirstResDau+resDau;
+         if(indResDau<0) return -1;
+         AliAODMCParticle* resdau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indResDau));
+         if(!resdau) return -1;
+         Int_t pdgresdau=resdau->GetPdgCode();
+         if(TMath::Abs(pdgresdau)==321){
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nKaons++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         if(TMath::Abs(pdgresdau)==211){
+           sumPxDau+=resdau->Px();
+           sumPyDau+=resdau->Py();
+           sumPzDau+=resdau->Pz();
+           nPions++;
+           arrayDauLab[nFoundKpi++]=indResDau;
+           if(nFoundKpi>3) return -1;
+         }
+         }
+      }else{
+       return -1;
+      }
+    }
+    if(nPions!=1) return -1;
+    if(nKaons!=2) return -1;
+    if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+    if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+    if(nDau==3) return 3;
+    else if(nDau==2){
+      if(isk0st) return 2;
+      if(isPhi) return 1;
+    }
+  }
+  
+  return -1;
+  
+}
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckDstarDecay(AliStack* stack, Int_t label, Int_t* arrayDauLab){
+  // Checks the Dstar decay channel. Returns 1 for D*->D0pi->Kpipi, -1 in other cases
+
+  if(label<0) return -1;
+  TParticle* mcPart = stack->Particle(label);
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=413) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+  if(nDau!=2) return -1;
+
+  Int_t labelFirstDau = mcPart->GetDaughter(0);
+  Int_t nKaons=0;
+  Int_t nPions=0;
+  Double_t sumPxDau=0.;
+  Double_t sumPyDau=0.;
+  Double_t sumPzDau=0.;
+  Int_t nFoundKpi=0;
+
+  for(Int_t iDau=0; iDau<nDau; iDau++){
+    Int_t indDau = labelFirstDau+iDau;
+    if(indDau<0) return -1;
+    TParticle* dau=stack->Particle(indDau);
+    if(!dau) return -1;
+    Int_t pdgdau=dau->GetPdgCode();
+    if(TMath::Abs(pdgdau)==421){
+      Int_t nResDau=dau->GetNDaughters();
+      if(nResDau!=2) return -1;
+      Int_t indFirstResDau=dau->GetDaughter(0);
+      for(Int_t resDau=0; resDau<2; resDau++){
+       Int_t indResDau=indFirstResDau+resDau;
+       if(indResDau<0) return -1;
+       TParticle* resdau=stack->Particle(indResDau);
+       if(!resdau) return -1;
+       Int_t pdgresdau=resdau->GetPdgCode();
+       if(TMath::Abs(pdgresdau)==321){
+         if(pdgD*pdgresdau>0) return -1;
+         sumPxDau+=resdau->Px();
+         sumPyDau+=resdau->Py();
+         sumPzDau+=resdau->Pz();
+         nKaons++;
+         arrayDauLab[nFoundKpi++]=indResDau;
+         if(nFoundKpi>3) return -1;
+       }
+       if(TMath::Abs(pdgresdau)==211){
+         if(pdgD*pdgresdau<0) return -1;
+         sumPxDau+=resdau->Px();
+         sumPyDau+=resdau->Py();
+         sumPzDau+=resdau->Pz();
+         nPions++;
+         arrayDauLab[nFoundKpi++]=indResDau;
+         if(nFoundKpi>3) return -1;
+       }
+      }
+    }else if(TMath::Abs(pdgdau)==211){
+      if(pdgD*pdgdau<0) return -1;
+      nPions++;
+      sumPxDau+=dau->Px();
+      sumPyDau+=dau->Py();
+      sumPzDau+=dau->Pz();
+      arrayDauLab[nFoundKpi++]=indDau;
+      if(nFoundKpi>3) return -1;
+    }
+  }
+
+  if(nPions!=2) return -1;
+  if(nKaons!=1) return -1;
+  if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+  if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+  if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+  return 1;
+  
+}
+
+//____________________________________________________________________________
+Int_t AliVertexingHFUtils::CheckDstarDecay(TClonesArray* arrayMC, AliAODMCParticle *mcPart, Int_t* arrayDauLab){
+  // Checks the Dstar decay channel. Returns 1 for D*->D0pi->Kpipi, -1 in other cases
+
+  Int_t pdgD=mcPart->GetPdgCode();
+  if(TMath::Abs(pdgD)!=413) return -1;
+
+  Int_t nDau=mcPart->GetNDaughters();
+  if(nDau!=2) return -1;
+
+  Int_t labelFirstDau = mcPart->GetDaughter(0);
+  Int_t nKaons=0;
+  Int_t nPions=0;
+  Double_t sumPxDau=0.;
+  Double_t sumPyDau=0.;
+  Double_t sumPzDau=0.;
+  Int_t nFoundKpi=0;
+
+  for(Int_t iDau=0; iDau<nDau; iDau++){
+    Int_t indDau = labelFirstDau+iDau;
+    if(indDau<0) return -1;
+    AliAODMCParticle* dau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indDau));
+    if(!dau) return -1;
+    Int_t pdgdau=dau->GetPdgCode();
+    if(TMath::Abs(pdgdau)==421){
+      Int_t nResDau=dau->GetNDaughters();
+      if(nResDau!=2) return -1;
+      Int_t indFirstResDau=dau->GetDaughter(0);
+      for(Int_t resDau=0; resDau<2; resDau++){
+       Int_t indResDau=indFirstResDau+resDau;
+       if(indResDau<0) return -1;
+       AliAODMCParticle* resdau=dynamic_cast<AliAODMCParticle*>(arrayMC->At(indResDau)); 
+       if(!resdau) return -1;
+       Int_t pdgresdau=resdau->GetPdgCode();
+       if(TMath::Abs(pdgresdau)==321){
+         if(pdgD*pdgresdau>0) return -1;
+         sumPxDau+=resdau->Px();
+         sumPyDau+=resdau->Py();
+         sumPzDau+=resdau->Pz();
+         nKaons++;
+         arrayDauLab[nFoundKpi++]=indResDau;
+         if(nFoundKpi>3) return -1;
+       }
+       if(TMath::Abs(pdgresdau)==211){
+         if(pdgD*pdgresdau<0) return -1;
+         sumPxDau+=resdau->Px();
+         sumPyDau+=resdau->Py();
+         sumPzDau+=resdau->Pz();
+         nPions++;
+         arrayDauLab[nFoundKpi++]=indResDau;
+         if(nFoundKpi>3) return -1;
+       }
+      }
+    }else if(TMath::Abs(pdgdau)==211){
+      if(pdgD*pdgdau<0) return -1;
+      nPions++;
+      sumPxDau+=dau->Px();
+      sumPyDau+=dau->Py();
+      sumPzDau+=dau->Pz();
+      arrayDauLab[nFoundKpi++]=indDau;
+      if(nFoundKpi>3) return -1;
+    }
+  }
+
+  if(nPions!=2) return -1;
+  if(nKaons!=1) return -1;
+  if(TMath::Abs(mcPart->Px()-sumPxDau)>0.001) return -2;
+  if(TMath::Abs(mcPart->Py()-sumPyDau)>0.001) return -2;
+  if(TMath::Abs(mcPart->Pz()-sumPzDau)>0.001) return -2;
+  return 1;
+  
+}
+