diff --git a/PWGUD/Tasks/ProcessMCDPMJetSGv3.cxx b/PWGUD/Tasks/ProcessMCDPMJetSGv3.cxx index 06fe5895b65..f24427dcf51 100644 --- a/PWGUD/Tasks/ProcessMCDPMJetSGv3.cxx +++ b/PWGUD/Tasks/ProcessMCDPMJetSGv3.cxx @@ -22,8 +22,8 @@ #include "PWGUD/DataModel/UDTables.h" // #include "TLorentzVector.h" // #include "TVector3.h" -#include "Math/LorentzVector.h" // ROOT::Math::LorentzVector -#include "Math/PxPyPzM4D.h" // ROOT::Math::PxPyPzM4D +#include "Math/LorentzVector.h" // ROOT::Math::LorentzVector +#include "Math/PxPyPzM4D.h" // ROOT::Math::PxPyPzM4D #include "TMath.h" using namespace o2; @@ -56,9 +56,6 @@ struct ProcessMCDPMJetSGv3 { using TC = TCs::iterator; using LorentzVectorM = ROOT::Math::LorentzVector>; - - - double massPion = 0.; double massKaon = 0.; double massProton = 0.; @@ -175,11 +172,10 @@ struct ProcessMCDPMJetSGv3 { counterMC += 1; // if(mcParticle.isPhysicalPrimary()) counterMC += 1; LorentzVectorM protoMC( - mcParticle.px(), - mcParticle.py(), - mcParticle.pz(), - massPion - ); + mcParticle.px(), + mcParticle.py(), + mcParticle.pz(), + massPion); double etaMax = 0.8; double ptMin = 0.1; if (std::fabs(protoMC.Eta()) < etaMax && protoMC.Pt() > ptMin) {