]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixing spelling error in function name
authorcnattras <cnattras@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 15 Aug 2013 01:46:02 +0000 (01:46 +0000)
committercnattras <cnattras@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 15 Aug 2013 01:46:02 +0000 (01:46 +0000)
PWGLF/totEt/AliAnalysisEtSelector.cxx
PWGLF/totEt/AliAnalysisEtSelector.h

index ba8aa3fffe2e72339dd865c176e94235aa5ccff2..9976f246749d89f1ad99f8fa4a0d7579ad74ef49 100644 (file)
@@ -93,14 +93,14 @@ Bool_t AliAnalysisEtSelector::FromSecondaryInteraction(const TParticle& part, Al
   
   //Let's find suspect decay (typical for secondary interaction)...
   
-  return SuspeciousDecayInChain(211, 111, part, stack);
+  return SuspiciousDecayInChain(211, 111, part, stack);
   
                            
   
   
 }
 
-Bool_t AliAnalysisEtSelector::SuspeciousDecayInChain(const UInt_t suspectMotherPdg, const UInt_t suspectDaughterPdg, const TParticle &part, AliStack& stack) const
+Bool_t AliAnalysisEtSelector::SuspiciousDecayInChain(const UInt_t suspectMotherPdg, const UInt_t suspectDaughterPdg, const TParticle &part, AliStack& stack) const
 {
   UInt_t partPdg = TMath::Abs(part.GetPdgCode());
   if(part.GetFirstMother() == -1)
@@ -113,7 +113,7 @@ Bool_t AliAnalysisEtSelector::SuspeciousDecayInChain(const UInt_t suspectMotherP
   {
     return kTRUE;
   }
-  return SuspeciousDecayInChain(suspectMotherPdg, suspectDaughterPdg, *mother, stack);
+  return SuspiciousDecayInChain(suspectMotherPdg, suspectDaughterPdg, *mother, stack);
 }
 
 Float_t AliAnalysisEtSelector::ShiftAngle(Float_t phi){//Always returns an angle in radians between -pi<phi<pi
index 10a0cfb4b6e17a30ab97992f8666b0ebe8469aa4..ae86b8b2fa917484b37ef0dc7c4728733d84a932 100644 (file)
@@ -92,7 +92,7 @@ protected:
 
     AliAnalysisEtCuts *fCuts; // Pointer to the cuts object; DS: also in base class?
     
-    Bool_t SuspeciousDecayInChain(const UInt_t suspectMotherPdg, const UInt_t suspectDaughterPdg, const TParticle& part, AliStack& stack) const;
+    Bool_t SuspiciousDecayInChain(const UInt_t suspectMotherPdg, const UInt_t suspectDaughterPdg, const TParticle& part, AliStack& stack) const;
     
     Int_t fRunNumber;