From: alibrary Date: Sat, 1 May 2004 12:25:43 +0000 (+0000) Subject: Coding Convention Violations X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=4f679a16a64b5c8b947fa1c7045d2501df30d642 Coding Convention Violations --- diff --git a/STEER/AliESDcascade.cxx b/STEER/AliESDcascade.cxx index 73a2801246d..9ffc4d39a89 100644 --- a/STEER/AliESDcascade.cxx +++ b/STEER/AliESDcascade.cxx @@ -13,15 +13,19 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ +/* $Id$ */ + //------------------------------------------------------------------------- // Implementation of the cascade vertex class -// +// This is part of the Event Summary Data +// which contains the result of the reconstruction +// and is the main set of classes for analaysis // Origin: Christian Kuhn, IReS, Strasbourg, christian.kuhn@ires.in2p3.fr //------------------------------------------------------------------------- + #include #include "AliESDcascade.h" -#include "AliESDv0.h" ClassImp(AliESDcascade) diff --git a/STEER/AliESDcascade.h b/STEER/AliESDcascade.h index 7abe4820bcd..6b2676b9816 100644 --- a/STEER/AliESDcascade.h +++ b/STEER/AliESDcascade.h @@ -4,9 +4,11 @@ /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ +/* $Id$ */ + //------------------------------------------------------------------------- // ESD Cascade Vertex Class -// +// Implementation of the cascade vertex class // Origin: Christian Kuhn, IReS, Strasbourg, christian.kuhn@ires.in2p3.fr //------------------------------------------------------------------------- diff --git a/STEER/AliESDpid.cxx b/STEER/AliESDpid.cxx index 74e37bd2165..272c07436a0 100644 --- a/STEER/AliESDpid.cxx +++ b/STEER/AliESDpid.cxx @@ -13,9 +13,13 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ +/* $Id$ */ + //----------------------------------------------------------------- // Implementation of the combined PID class -// +// For the Event Summary Data Class +// produced by the reconstruction process +// and containing information on the particle identification // Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch //----------------------------------------------------------------- @@ -28,11 +32,15 @@ ClassImp(AliESDpid) //_________________________________________________________________________ Int_t AliESDpid::MakePID(AliESD *event) { + // + // Combine the information of various detectors + // to determine the Particle Identification + // Int_t ntrk=event->GetNumberOfTracks(); for (Int_t i=0; iGetTrack(i); @@ -40,7 +48,7 @@ Int_t AliESDpid::MakePID(AliESD *event) Double_t d[10]; t->GetITSpid(d); Int_t j, ok=0; - for (j=0; jeps) ok=1; + for (j=0; jkeps) ok=1; if (ok) for (j=0; jGetTPCpid(d); Int_t j, ok=0; - for (j=0; jeps) ok=1; + for (j=0; jkeps) ok=1; if (ok) for (j=0; jGetTRDpid(d); Int_t j, ok=0; - for (j=0; jeps) ok=1; + for (j=0; jkeps) ok=1; if (ok) for (j=0; jGetTOFpid(d); Int_t j, ok=0; - for (j=0; jeps) ok=1; + for (j=0; jkeps) ok=1; if (ok) for (j=0; jGetPHOSpid(d); Int_t j, ok=0; - for (j=0; jeps) ok=1; + for (j=0; jkeps) ok=1; if (ok) for (j=0; jGetRICHpid(d); Int_t j, ok=0; - for (j=0; jeps) ok=1; + for (j=0; jkeps) ok=1; if (ok) for (j=0; j diff --git a/STEER/AliESDv0.cxx b/STEER/AliESDv0.cxx index 67e0ea36468..caf3bad6e2c 100644 --- a/STEER/AliESDv0.cxx +++ b/STEER/AliESDv0.cxx @@ -13,11 +13,16 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ +/* $Id$ */ + //------------------------------------------------------------------------- // Implementation of the ESD V0 vertex class -// +// This class is part of the Event Data Summary +// set of classes and contains information about +// V0 kind vertexes generated by a neutral particle // Origin: Iouri Belikov, IReS, Strasbourg, Jouri.Belikov@cern.ch //------------------------------------------------------------------------- + #include #include #include diff --git a/STEER/AliESDv0.h b/STEER/AliESDv0.h index 837dccf1857..2df34de7e89 100644 --- a/STEER/AliESDv0.h +++ b/STEER/AliESDv0.h @@ -4,9 +4,11 @@ /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ +/* $Id$ */ + //------------------------------------------------------------------------- // ESD V0 Vertex Class -// +// This class is part of the Event Summary Data set of classes // Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch //-------------------------------------------------------------------------