]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- changed order of filling validated histograms
authorfbock <friederike.bock@cern.ch>
Wed, 20 Aug 2014 14:56:19 +0000 (16:56 +0200)
committerfbock <friederike.bock@cern.ch>
Wed, 20 Aug 2014 14:56:19 +0000 (16:56 +0200)
PWGGA/GammaConv/AliAnalysisTaskNeutralMesonToPiPlPiMiPiZero.cxx

index a4f0166dcca38adaa8153c25d961cbd6c7fb6e88..12ada3c5e134faead24967137a8faaaaa60a757e 100644 (file)
@@ -1201,18 +1201,19 @@ void AliAnalysisTaskNeutralMesonToPiPlPiMiPiZero::ProcessPionCandidates(){
                        Int_t labelp=0;
                        Int_t motherlabelp = 0;
                        Int_t motherlabeln = 0;
+                       TParticle *fNegativeMCParticle =NULL;
+                       TParticle *fPositiveMCParticle =NULL;
                        if( fMCEvent ) {
                                labeln=TMath::Abs(negPionCandidate->GetLabel());
                                labelp=TMath::Abs(posPionCandidate->GetLabel());
-                               TParticle *fNegativeMCParticle = fMCStack->Particle(labeln);
-                               TParticle *fPositiveMCParticle = fMCStack->Particle(labelp);
+                               fNegativeMCParticle = fMCStack->Particle(labeln);
+                               fPositiveMCParticle = fMCStack->Particle(labelp);
                                motherlabeln = fNegativeMCParticle->GetMother(0);
                                motherlabelp = fPositiveMCParticle->GetMother(0);
                                if( fPositiveMCParticle && fNegativeMCParticle) {
                                        virtualPhoton->SetMCLabelPositive(labelp);
                                        virtualPhoton->SetMCLabelNegative(labeln);
-                               }
-                               
+                               }                               
                        }
                        
                        AliAODConversionPhoton *vParticle = new AliAODConversionPhoton(virtualPhoton); //To Apply PsiPairCut
@@ -1225,10 +1226,15 @@ void AliAnalysisTaskNeutralMesonToPiPlPiMiPiZero::ProcessPionCandidates(){
                        }       
 
                        if (fMCEvent){
-                               if (motherlabeln == motherlabelp){
-                                       fHistoTruePionPionFromSameMotherInvMassPt[fiCut]->Fill(vParticle->GetMass(),vParticle->Pt());
-                                       if( IsEtaPiPlPiMiPiZeroDaughter(labeln)  || IsOmegaPiPlPiMiPiZeroDaughter(labeln) ) {
-                                               fHistoTruePionPionFromNeutralMesonInvMassPt[fiCut]->Fill(vParticle->GetMass(),vParticle->Pt());
+                               if (fPositiveMCParticle && fNegativeMCParticle ) {
+                                       if(TMath::Abs(fNegativeMCParticle->GetPdgCode())==211 && TMath::Abs(fPositiveMCParticle->GetPdgCode())==211){  // Pions ...
+                                               fHistoTruePionPionInvMassPt[fiCut]->Fill(vParticle->GetMass(),vParticle->Pt());
+                                               if (motherlabeln == motherlabelp){
+                                                       fHistoTruePionPionFromSameMotherInvMassPt[fiCut]->Fill(vParticle->GetMass(),vParticle->Pt());
+                                                       if( IsEtaPiPlPiMiPiZeroDaughter(labeln)  || IsOmegaPiPlPiMiPiZeroDaughter(labeln) ) {
+                                                               fHistoTruePionPionFromNeutralMesonInvMassPt[fiCut]->Fill(vParticle->GetMass(),vParticle->Pt());
+                                                       }
+                                               }
                                        }
                                }       
                        }
@@ -1553,9 +1559,6 @@ void AliAnalysisTaskNeutralMesonToPiPlPiMiPiZero::ProcessTrueMesonCandidates(Ali
 //     if (fDoMesonQA){
                TParticle * negativeMC = (TParticle*)TrueVirtualParticleCandidate->GetNegativeMCDaughter(MCStack);
                TParticle * positiveMC = (TParticle*)TrueVirtualParticleCandidate->GetPositiveMCDaughter(MCStack);
-               if(TMath::Abs(negativeMC->GetPdgCode())==211 && TMath::Abs(positiveMC->GetPdgCode())==211){  // Pions ...
-                       fHistoTruePionPionInvMassPt[fiCut]->Fill(TrueVirtualParticleCandidate->GetMass(),TrueVirtualParticleCandidate->Pt());
-               }
 //     }
        
        if(virtualParticleMCLabel != -1){ // if virtualParticleMCLabel==-1 particles don't have same mother