From ac3faee4980efbf9c8f8eeafc61770ffc45bb103 Mon Sep 17 00:00:00 2001 From: alibrary Date: Tue, 4 May 2004 15:09:55 +0000 Subject: [PATCH] Coding Convention Violation correction --- EVGEN/AliGeVSimParticle.cxx | 24 +++++++++++++++++++++--- EVGEN/AliGeVSimParticle.h | 21 ++++++++++++--------- EVGEN/AliGenAfterBurnerFlow.cxx | 22 +++++++++++++++++++--- EVGEN/AliGenFLUKAsource.cxx | 14 +++++++------- EVGEN/AliGenGeVSim.cxx | 1 + EVGEN/AliGenGeVSim.h | 7 ++++++- EVGEN/AliGenGeVSimEventHeader.cxx | 18 ++++++++++++++++++ EVGEN/AliGenHIJINGpara.cxx | 6 +++--- EVGEN/AliGenHIJINGpara.h | 3 ++- EVGEN/AliGenHalo.h | 4 ++-- EVGEN/AliGenHaloProtvino.cxx | 6 +++--- EVGEN/AliGenMC.cxx | 2 ++ EVGEN/AliGenMC.h | 10 +++++----- EVGEN/AliGenMUONCocktail.cxx | 11 ++++------- EVGEN/AliGenMUONlib.cxx | 5 +++-- EVGEN/AliGenPHOSlib.h | 7 +++++++ EVGEN/AliGenPMDlib.cxx | 8 ++++++++ EVGEN/AliGenPMDlib.h | 12 +++++++++--- EVGEN/AliGenParam.cxx | 22 +++++++++++----------- EVGEN/AliGenReaderEcalHijing.cxx | 1 - EVGEN/AliGenReaderEcalJets.cxx | 1 - EVGEN/AliGenSTRANGElib.cxx | 2 +- EVGEN/AliGenSTRANGElib.h | 8 ++++++++ EVGEN/AliGenScan.cxx | 1 - EVGEN/AliPartonicEnergyLoss.cxx | 8 ++++++++ EVGEN/AliPartonicEnergyLoss.h | 6 ++++++ EVGEN/AliSlowNucleonModelExp.cxx | 9 ++++++--- EVGEN/AliSlowNucleonModelExp.h | 8 +++++++- STEER/AliESDtrack.h | 5 ++++- 29 files changed, 183 insertions(+), 69 deletions(-) diff --git a/EVGEN/AliGeVSimParticle.cxx b/EVGEN/AliGeVSimParticle.cxx index 6f1e1147df1..f1bff06dc36 100644 --- a/EVGEN/AliGeVSimParticle.cxx +++ b/EVGEN/AliGeVSimParticle.cxx @@ -1,10 +1,27 @@ -//////////////////////////////////////////////////////////////////////////////// +/************************************************************************** + * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * + * * + * Author: The ALICE Off-line Project. * + * Contributors are mentioned in the code where appropriate. * + * * + * Permission to use, copy, modify and distribute this software and its * + * documentation strictly for non-commercial purposes is hereby granted * + * without fee, provided that the above copyright notice appears in all * + * copies and that both the copyright notice and this permission notice * + * appear in the supporting documentation. The authors make no claims * + * about the suitability of this software for any purpose. It is * + * provided "as is" without express or implied warranty. * + **************************************************************************/ + +/* $Id$ */ + +////////////////////////////////////////////////////////////////////////////// // // AliGeVSimParticle is a helper class for GeVSim (AliGenGeVSim) event generator. // An object of this class represents one particle type and contain // information about particle type thermal parameters. // -//////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// // // For examples, parameters and testing macros refer to: // http:/home.cern.ch/radomski @@ -154,7 +171,8 @@ void AliGeVSimParticle::SetEllipticSimple(Float_t v2) { //////////////////////////////////////////////////////////////////////////////////////////////////// -Bool_t AliGeVSimParticle::IsFlowSimple() { +Bool_t AliGeVSimParticle::IsFlowSimple() const +{ // // Function used by AliGenGeVSim // diff --git a/EVGEN/AliGeVSimParticle.h b/EVGEN/AliGeVSimParticle.h index 2155f60fe26..945b8491423 100644 --- a/EVGEN/AliGeVSimParticle.h +++ b/EVGEN/AliGeVSimParticle.h @@ -1,13 +1,18 @@ #ifndef ALIGEVSIMPARTICLE_H #define ALIGEVSIMPARTICLE_H -//////////////////////////////////////////////////////////////////////////////// +/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * + * See cxx source for full Copyright notice */ + +/* $Id$ */ + +////////////////////////////////////////////////////////////////////////////// // // AliGeVSimParticle is a helper class for GeVSim (AliGenGeVSim) event generator. // An object of this class represents one particle type and contain // information about particle type thermal parameters. // -//////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// // // For examples, parameters and testing macros refer to: // http:/home.cern.ch/radomski @@ -22,7 +27,7 @@ // // S.Radomski@gsi.de // -//////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// // // Updated and revised: September 2002, S. Radomski, GSI // @@ -62,12 +67,12 @@ class AliGeVSimParticle : public TObject { // Multiplicity void SetMultiplicity(Float_t mult); - Float_t GetMultiplicity() {return fN;} + Float_t GetMultiplicity() const {return fN;} void SetMultTotal(Bool_t isTotal = kTRUE); - Bool_t IsMultTotal() {return fMultTotal;} - Bool_t IsMultForced() {return fIsSetMult;} + Bool_t IsMultTotal() const {return fMultTotal;} + Bool_t IsMultForced() const {return fIsSetMult;} // Flow @@ -78,7 +83,7 @@ class AliGeVSimParticle : public TObject { void SetEllipticParam(Float_t v21, Float_t pTmax, Float_t v22=0.); void SetEllipticOld(Float_t v21, Float_t v22, Float_t v23); - Bool_t IsFlowSimple(); + Bool_t IsFlowSimple() const; Float_t GetDirectedFlow(Float_t pt, Float_t y); Float_t GetEllipticFlow(Float_t pt, Float_t y); @@ -105,8 +110,6 @@ class AliGeVSimParticle : public TObject { Bool_t fIsEllipticSimple; // indicate use constant value for elliptic (v2) Bool_t fIsEllipticOld; // linear / quadratical pT parametrisation - public: - ClassDef(AliGeVSimParticle, 3) }; diff --git a/EVGEN/AliGenAfterBurnerFlow.cxx b/EVGEN/AliGenAfterBurnerFlow.cxx index cdad4bdcf35..3bd16e0f3fe 100644 --- a/EVGEN/AliGenAfterBurnerFlow.cxx +++ b/EVGEN/AliGenAfterBurnerFlow.cxx @@ -1,5 +1,21 @@ - -//////////////////////////////////////////////////////////////////////////////////////////////////// +/************************************************************************** + * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * + * * + * Author: The ALICE Off-line Project. * + * Contributors are mentioned in the code where appropriate. * + * * + * Permission to use, copy, modify and distribute this software and its * + * documentation strictly for non-commercial purposes is hereby granted * + * without fee, provided that the above copyright notice appears in all * + * copies and that both the copyright notice and this permission notice * + * appear in the supporting documentation. The authors make no claims * + * about the suitability of this software for any purpose. It is * + * provided "as is" without express or implied warranty. * + **************************************************************************/ + +/* $Id$ */ + +/////////////////////////////////////////////////////////////////////////////// // // AliGenAfterBurnerFlow is a After Burner event generator applying flow. // The generator changes Phi coordinate of the particle momentum. @@ -14,7 +30,7 @@ // // S.Radomski@gsi.de // -//////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// #include #include "TParticle.h" diff --git a/EVGEN/AliGenFLUKAsource.cxx b/EVGEN/AliGenFLUKAsource.cxx index 48de233cfd6..6f2884def37 100644 --- a/EVGEN/AliGenFLUKAsource.cxx +++ b/EVGEN/AliGenFLUKAsource.cxx @@ -21,19 +21,19 @@ // Files can be chained. // Author: andreas.morsch@cern.ch +#include + +#include +#include #include -#include "TPDGCode.h" -#include "TDatabasePDG.h" +#include +#include +#include #include #include "AliGenFLUKAsource.h" #include "AliRun.h" - -#include -#include -#include -#include ClassImp(AliGenFLUKAsource) AliGenFLUKAsource::AliGenFLUKAsource() diff --git a/EVGEN/AliGenGeVSim.cxx b/EVGEN/AliGenGeVSim.cxx index 60bc647379c..c1092195cf4 100644 --- a/EVGEN/AliGenGeVSim.cxx +++ b/EVGEN/AliGenGeVSim.cxx @@ -14,6 +14,7 @@ **************************************************************************/ /* $Id$ */ + // // AliGenGeVSim is a class implementing GeVSim event generator. // diff --git a/EVGEN/AliGenGeVSim.h b/EVGEN/AliGenGeVSim.h index 1eda6ba960a..ec6639b337d 100644 --- a/EVGEN/AliGenGeVSim.h +++ b/EVGEN/AliGenGeVSim.h @@ -86,7 +86,12 @@ class AliGenGeVSim : public AliGenerator { ///////////////////////////////////////////////////////////////// private: - + + AliGenGeVSim(const AliGenGeVSim & ggs): AliGenerator(ggs) + {Fatal("copy ctor","Not implemented\n");} + AliGenGeVSim & operator=(const AliGenGeVSim & ggs) + {Fatal("= operator","Not implemented\n"); return *this;} + Int_t fModel; // Selected model (1-7) Float_t fPsi; // Reaction Plane angle (0-2pi) Bool_t fIsMultTotal; // Mode od multiplicity: total, dN/dY diff --git a/EVGEN/AliGenGeVSimEventHeader.cxx b/EVGEN/AliGenGeVSimEventHeader.cxx index f852cea7a33..6eea50c43af 100644 --- a/EVGEN/AliGenGeVSimEventHeader.cxx +++ b/EVGEN/AliGenGeVSimEventHeader.cxx @@ -1,3 +1,21 @@ +/************************************************************************** + * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * + * * + * Author: The ALICE Off-line Project. * + * Contributors are mentioned in the code where appropriate. * + * * + * Permission to use, copy, modify and distribute this software and its * + * documentation strictly for non-commercial purposes is hereby granted * + * without fee, provided that the above copyright notice appears in all * + * copies and that both the copyright notice and this permission notice * + * appear in the supporting documentation. The authors make no claims * + * about the suitability of this software for any purpose. It is * + * provided "as is" without express or implied warranty. * + **************************************************************************/ + +/* $Id$ */ + + // // Event header for GeVSim event generator // support event plane and elliptic flow diff --git a/EVGEN/AliGenHIJINGpara.cxx b/EVGEN/AliGenHIJINGpara.cxx index 1d12581281a..71702a9ad89 100644 --- a/EVGEN/AliGenHIJINGpara.cxx +++ b/EVGEN/AliGenHIJINGpara.cxx @@ -38,15 +38,15 @@ /////////////////////////////////////////////////////////////////// #include +#include #include #include #include #include -#include #include -#include -#include +#include #include +#include #include "AliConst.h" #include "AliDecayer.h" diff --git a/EVGEN/AliGenHIJINGpara.h b/EVGEN/AliGenHIJINGpara.h index 0e8c835bc8c..2164880d47f 100644 --- a/EVGEN/AliGenHIJINGpara.h +++ b/EVGEN/AliGenHIJINGpara.h @@ -9,9 +9,10 @@ // used for the ALICE TDRs. // Author: andreas.morsch@cern.ch +class TF1; + #include "AliGenerator.h" #include "AliDecayer.h" -class TF1; class AliGenHIJINGpara : public AliGenerator { diff --git a/EVGEN/AliGenHalo.h b/EVGEN/AliGenHalo.h index 11a9389a68f..1df5c596b55 100644 --- a/EVGEN/AliGenHalo.h +++ b/EVGEN/AliGenHalo.h @@ -24,11 +24,11 @@ class AliGenHalo : public AliGenerator virtual void SetFileName(TString filename) {fFileName=TString(filename);} virtual void Generate(); AliGenHalo & operator=(const AliGenHalo & rhs); - private: - void Copy(TObject &Halo) const; protected: FILE *fp; // ! Pointer to file TString fFileName; // Choose the file + private: + void Copy(TObject &Halo) const; ClassDef(AliGenHalo,1) // LHC background boundary source (MARS input) }; #endif diff --git a/EVGEN/AliGenHaloProtvino.cxx b/EVGEN/AliGenHaloProtvino.cxx index e598e1a82a0..a757f5b6a5e 100644 --- a/EVGEN/AliGenHaloProtvino.cxx +++ b/EVGEN/AliGenHaloProtvino.cxx @@ -232,7 +232,7 @@ void AliGenHaloProtvino::Generate() Float_t zVertexOld = -1.e10; Int_t nInt = 0; // Counts number of interactions - Float_t Wgt = 0.; + Float_t wwgt = 0.; while(1) { // @@ -343,7 +343,7 @@ void AliGenHaloProtvino::Generate() PushTrack(fTrackIt,ntP,ipart[nprim],p,origin,polar,t,kPNoProcess,nt,fParentWeight); } } - Wgt += fParentWeight; + wwgt += fParentWeight; SetHighWaterMark(nt); } @@ -356,7 +356,7 @@ void AliGenHaloProtvino::Generate() delete [] vy; delete [] tx; delete [] ty; - printf("Total weight %f\n\n", Wgt); + printf("Total weight %f\n\n", wwgt); } diff --git a/EVGEN/AliGenMC.cxx b/EVGEN/AliGenMC.cxx index a3ff1e849bc..d8d68526e7a 100644 --- a/EVGEN/AliGenMC.cxx +++ b/EVGEN/AliGenMC.cxx @@ -21,11 +21,13 @@ // decay products and particle selection. // andreas.morsch@cern.ch +#include #include #include #include #include "AliGenMC.h" +#include "AliGeometry.h" ClassImp(AliGenMC) diff --git a/EVGEN/AliGenMC.h b/EVGEN/AliGenMC.h index b8adea6129f..a01455301a6 100644 --- a/EVGEN/AliGenMC.h +++ b/EVGEN/AliGenMC.h @@ -12,14 +12,14 @@ // decay products and particle selection. // andreas.morsch@cern.ch -#include "AliGenerator.h" -#include "AliDecayer.h" -#include "AliGeometry.h" +class TClonesArray; +class TParticle; #include -#include #include -class TParticle; +class AliGeometry; +#include "AliDecayer.h" +#include "AliGenerator.h" class AliGenMC : public AliGenerator { diff --git a/EVGEN/AliGenMUONCocktail.cxx b/EVGEN/AliGenMUONCocktail.cxx index e988606466c..5710647f5ab 100644 --- a/EVGEN/AliGenMUONCocktail.cxx +++ b/EVGEN/AliGenMUONCocktail.cxx @@ -32,18 +32,15 @@ // -//#include #include -#include #include -#include "AliGenParam.h" -#include "AliGenMUONlib.h" -#include "AliGenMUONCocktail.h" #include "AliGenCocktailEntry.h" -#include "AliCollisionGeometry.h" -#include "AliRun.h" +#include "AliGenMUONCocktail.h" +#include "AliGenMUONlib.h" +#include "AliGenParam.h" #include "AliMC.h" +#include "AliRun.h" #include "AliStack.h" ClassImp(AliGenMUONCocktail) diff --git a/EVGEN/AliGenMUONlib.cxx b/EVGEN/AliGenMUONlib.cxx index 6207544baf6..9df3a7188dd 100644 --- a/EVGEN/AliGenMUONlib.cxx +++ b/EVGEN/AliGenMUONlib.cxx @@ -767,9 +767,10 @@ GenFunc AliGenMUONlib::GetPt(Int_t param, const char* tname) const GenFunc AliGenMUONlib::GetY(Int_t param, const char* tname) const { + // + // Return pointer to y- parameterisation + // TString sname = TString(tname); - -// Return pointer to y- parameterisation GenFunc func; switch (param) { diff --git a/EVGEN/AliGenPHOSlib.h b/EVGEN/AliGenPHOSlib.h index 3006cd7d391..895bb59c417 100644 --- a/EVGEN/AliGenPHOSlib.h +++ b/EVGEN/AliGenPHOSlib.h @@ -6,6 +6,13 @@ /* $Id$ */ +//====================================================================== +// AliGenPHOSlib class contains parameterizations of the +// pion, kaon, eta, omega, etaprime, phi and baryon (proton, +// antiproton, neutron and anti-neutron) particles for the +// study of the neutral background in PHOS detector. +//====================================================================== + class TRandom; class AliGenPHOSlib : diff --git a/EVGEN/AliGenPMDlib.cxx b/EVGEN/AliGenPMDlib.cxx index 48030a27c22..a2df71c7be7 100644 --- a/EVGEN/AliGenPMDlib.cxx +++ b/EVGEN/AliGenPMDlib.cxx @@ -15,6 +15,14 @@ /* $Id$ */ +// +// Library of generators for PMD +// providing y and pt parametrisation +// for generated tracks +// Specific for PMD needs +// Author: PMD Offline Group +// + #include #include diff --git a/EVGEN/AliGenPMDlib.h b/EVGEN/AliGenPMDlib.h index eef813e0ae4..d5e220f2152 100644 --- a/EVGEN/AliGenPMDlib.h +++ b/EVGEN/AliGenPMDlib.h @@ -5,11 +5,17 @@ /* $Id$ */ -#include "AliGenLib.h" +// +// Library of generators for PMD +// providing y and pt parametrisation +// for generated tracks +// + class TRandom; -class AliGenPMDlib : -public AliGenLib +#include "AliGenLib.h" + +class AliGenPMDlib :public AliGenLib { public: enum constants{kPion, kEta}; diff --git a/EVGEN/AliGenParam.cxx b/EVGEN/AliGenParam.cxx index dc1243f0368..775c8a75c9f 100644 --- a/EVGEN/AliGenParam.cxx +++ b/EVGEN/AliGenParam.cxx @@ -21,22 +21,22 @@ // Decays are performed using Pythia. // andreas.morsch@cern.ch -#include "AliGenParam.h" -#include "AliDecayer.h" -#include "AliGenMUONlib.h" -#include "AliRun.h" -#include -#include +#include #include +#include +#include #include -#include +#include +#include +#include #include +#include -#include -#include -#include -#include +#include "AliDecayer.h" +#include "AliGenMUONlib.h" +#include "AliGenParam.h" #include "AliMC.h" +#include "AliRun.h" ClassImp(AliGenParam) diff --git a/EVGEN/AliGenReaderEcalHijing.cxx b/EVGEN/AliGenReaderEcalHijing.cxx index 8483edd51e7..9c555493d4c 100644 --- a/EVGEN/AliGenReaderEcalHijing.cxx +++ b/EVGEN/AliGenReaderEcalHijing.cxx @@ -24,7 +24,6 @@ #include #include #include -#include #include "AliGenReaderEcalHijing.h" diff --git a/EVGEN/AliGenReaderEcalJets.cxx b/EVGEN/AliGenReaderEcalJets.cxx index 8646e5a2f5a..90a575250be 100644 --- a/EVGEN/AliGenReaderEcalJets.cxx +++ b/EVGEN/AliGenReaderEcalJets.cxx @@ -24,7 +24,6 @@ #include #include #include -#include #include "AliGenReaderEcalJets.h" diff --git a/EVGEN/AliGenSTRANGElib.cxx b/EVGEN/AliGenSTRANGElib.cxx index 25f8773b2dd..2432f6bca59 100644 --- a/EVGEN/AliGenSTRANGElib.cxx +++ b/EVGEN/AliGenSTRANGElib.cxx @@ -34,7 +34,7 @@ // Tiziano.Virgili@roma1.infn.it //====================================================================== -/* $Id: */ +/* $Id$ */ #include "TMath.h" #include "TRandom.h" diff --git a/EVGEN/AliGenSTRANGElib.h b/EVGEN/AliGenSTRANGElib.h index c5948f48cac..fce2876917c 100644 --- a/EVGEN/AliGenSTRANGElib.h +++ b/EVGEN/AliGenSTRANGElib.h @@ -7,6 +7,14 @@ /* $Id$ */ +//====================================================================== +// AliGenSTRANGElib class contains parameterizations of the +// kaon, phi and hyperon (Lambda, Anti-Lambda, Xi, anti-Xi, Omega, +// anti-Omega) for the PPR study of the strange particle production. +// +// Rocco CALIANDRO. Rosa Anna FINI, Tiziano VIRGILI +//====================================================================== + class TRandom; class AliGenSTRANGElib : diff --git a/EVGEN/AliGenScan.cxx b/EVGEN/AliGenScan.cxx index c540cab0d7b..7ea64c3aed1 100644 --- a/EVGEN/AliGenScan.cxx +++ b/EVGEN/AliGenScan.cxx @@ -22,7 +22,6 @@ // Author: andreas.morsch@cern.ch #include "AliGenScan.h" -#include "AliRun.h" ClassImp(AliGenScan) diff --git a/EVGEN/AliPartonicEnergyLoss.cxx b/EVGEN/AliPartonicEnergyLoss.cxx index fc38847022e..38fad5bd50c 100644 --- a/EVGEN/AliPartonicEnergyLoss.cxx +++ b/EVGEN/AliPartonicEnergyLoss.cxx @@ -15,6 +15,14 @@ /* $Id$ */ +// +// Calculate parton energy loss +// in nucleus nucleus +// reactions via calculation +// of quenching weights +// Author: A.Morsch +// + #include "AliPartonicEnergyLoss.h" #include diff --git a/EVGEN/AliPartonicEnergyLoss.h b/EVGEN/AliPartonicEnergyLoss.h index 9c6b768bf6b..4160bc01ce0 100644 --- a/EVGEN/AliPartonicEnergyLoss.h +++ b/EVGEN/AliPartonicEnergyLoss.h @@ -5,6 +5,12 @@ /* $Id$ */ +// +// Calculate parton energy loss +// in nucleus nucleus reactions +// Author: A.Morsch +// + #include class AliPartonicEnergyLoss : public TObject { diff --git a/EVGEN/AliSlowNucleonModelExp.cxx b/EVGEN/AliSlowNucleonModelExp.cxx index b86f532a971..1e5589bb4d7 100644 --- a/EVGEN/AliSlowNucleonModelExp.cxx +++ b/EVGEN/AliSlowNucleonModelExp.cxx @@ -15,11 +15,12 @@ /* $Id$ */ -// Experimental data inspired Gray Particle Model for p-Pb collisions // +// Experimental data inspired Gray Particle Model for p-Pb collisions // The number of gray nucleons is proportional to the number of collisions. // The number of black nucleons is proportional to the number of collisions // Fluctuations are calculated from a binomial distribution. +// Author: A.Morsch // #include "AliSlowNucleonModelExp.h" @@ -30,7 +31,9 @@ ClassImp(AliSlowNucleonModelExp) AliSlowNucleonModelExp::AliSlowNucleonModelExp() { -// Default constructor + // + // Default constructor + // fP = 82; fN = 208 - 82; fAlphaGray = 2.; @@ -39,7 +42,7 @@ AliSlowNucleonModelExp::AliSlowNucleonModelExp() void AliSlowNucleonModelExp::GetNumberOfSlowNucleons(AliCollisionGeometry* geo, - Int_t& ngp, Int_t& ngn, Int_t & nbp, Int_t & nbn) + Int_t& ngp, Int_t& ngn, Int_t & nbp, Int_t & nbn) const { // // Return the number of black and gray nucleons diff --git a/EVGEN/AliSlowNucleonModelExp.h b/EVGEN/AliSlowNucleonModelExp.h index 2a14b7415d5..d94f79a0f55 100644 --- a/EVGEN/AliSlowNucleonModelExp.h +++ b/EVGEN/AliSlowNucleonModelExp.h @@ -5,6 +5,12 @@ /* $Id$ */ +// +// Experimental data inspired Gray Particle Model for p-Pb collisions +// Fluctuations are calculated from a binomial distribution. +// Author: A.Morsch +// + #include "AliSlowNucleonModel.h" class AliCollisionGeometry; @@ -15,7 +21,7 @@ class AliSlowNucleonModelExp : public AliSlowNucleonModel AliSlowNucleonModelExp(); virtual ~AliSlowNucleonModelExp(){;} virtual void GetNumberOfSlowNucleons(AliCollisionGeometry* geo, - Int_t& ngp, Int_t& ngn, Int_t& nbp, Int_t& nbn); + Int_t& ngp, Int_t& ngn, Int_t& nbp, Int_t& nbn) const; virtual void SetParameters(Float_t alpha1, Float_t alpha2); protected: diff --git a/STEER/AliESDtrack.h b/STEER/AliESDtrack.h index d5884149adf..a022b21a060 100644 --- a/STEER/AliESDtrack.h +++ b/STEER/AliESDtrack.h @@ -3,14 +3,17 @@ /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ +/* $Id$ */ + //------------------------------------------------------------------------- // Class AliESDtrack // This is the class to deal with during the physical analysis of data // // Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch //------------------------------------------------------------------------- -#include "TObject.h" + #include +#include class AliKalmanTrack; -- 2.39.3