-// //
-// // adapted from AliAnalysisTaskSpectraAOD.cxx
-// //
-// // returns
-// // -1: no particle
-// // 0: is primary
-// // 1: is secondary from weak
-// // 2: is secondary from material
-//
-// // usage for studies, currrently not implemented
-//
-// if(!part) return -1;
-//
-// if( part->IsPhysicalPrimary() ) return 0;
-//
-// Bool_t isSecondaryMaterial = kFALSE;
-// Bool_t isSecondaryWeak = kFALSE;
-// Int_t mfl = -999;
-// Int_t codemoth = -999;
-// Int_t indexMoth = part->GetMother(); // FIXME ignore fakes? TO BE CHECKED, on ESD is GetFirstMother()
-// if(indexMoth >= 0)
-// {
-// AliAODMCParticle* moth = (AliAODMCParticle*) arrayMC->At(indexMoth);
-// codemoth = TMath::Abs(moth->GetPdgCode());
-// mfl = Int_t (codemoth/ TMath::Power(10, Int_t(TMath::Log10(codemoth))));
-// }
-// // add if(partMC->GetStatus() & kPDecay)? FIXME
-// if(mfl==3) isSecondaryWeak = kTRUE;
-// else isSecondaryMaterial = kTRUE;
-//
-// if(isSecondaryWeak) return 1;
-// if(isSecondaryMaterial) return 2;
-//
-// // if( isSecondaryMaterial || isSecondaryWeak ) return kTRUE;
-//
-// // return kFALSE; this line will not be reached, as either isSecondaryMaterial or isSecondaryWeak is true!
-// // removed due to coverity
-// }
-
-
-
-void AlidNdPtAnalysisPbPbAOD::Terminate(Option_t *)
-{
-
-}
-
-Double_t* AlidNdPtAnalysisPbPbAOD::GetArrayClone(Int_t n, Double_t* source)
-{
- if (!source || n==0) return 0;
- Double_t* dest = new Double_t[n];
- for (Int_t i=0; i<n ; i++) { dest[i] = source[i]; }
- return dest;
-}
+ // //
+ // // adapted from AliAnalysisTaskSpectraAOD.cxx
+ // //
+ // // returns
+ // // -1: no particle
+ // // 0: is primary
+ // // 1: is secondary from weak
+ // // 2: is secondary from material
+ //
+ // // usage for studies, currrently not implemented
+ //
+ // if(!part) return -1;
+ //
+ // if( part->IsPhysicalPrimary() ) return 0;
+ //
+ // Bool_t isSecondaryMaterial = kFALSE;
+ // Bool_t isSecondaryWeak = kFALSE;
+ // Int_t mfl = -999;
+ // Int_t codemoth = -999;
+ // Int_t indexMoth = part->GetMother(); // FIXME ignore fakes? TO BE CHECKED, on ESD is GetFirstMother()
+ // if(indexMoth >= 0)
+ // {
+ // AliAODMCParticle* moth = (AliAODMCParticle*) arrayMC->At(indexMoth);
+ // codemoth = TMath::Abs(moth->GetPdgCode());
+ // mfl = Int_t (codemoth/ TMath::Power(10, Int_t(TMath::Log10(codemoth))));
+ // }
+ // // add if(partMC->GetStatus() & kPDecay)? FIXME
+ // if(mfl==3) isSecondaryWeak = kTRUE;
+ // else isSecondaryMaterial = kTRUE;
+ //
+ // if(isSecondaryWeak) return 1;
+ // if(isSecondaryMaterial) return 2;
+ //
+ // // if( isSecondaryMaterial || isSecondaryWeak ) return kTRUE;
+ //
+ // // return kFALSE; this line will not be reached, as either isSecondaryMaterial or isSecondaryWeak is true!
+ // // removed due to coverity
+ // }
+
+
+
+ void AlidNdPtAnalysisPbPbAOD::Terminate(Option_t *)
+ {
+
+ }
+
+ Double_t* AlidNdPtAnalysisPbPbAOD::GetArrayClone(Int_t n, Double_t* source)
+ {
+ if (!source || n==0) return 0;
+ Double_t* dest = new Double_t[n];
+ for (Int_t i=0; i<n ; i++) { dest[i] = source[i]; }
+ return dest;
+ }
+
\ No newline at end of file