From: hristov Date: Mon, 3 Mar 2003 16:32:40 +0000 (+0000) Subject: Corrections to obey coding conventions X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=066782e8616c397374965c08d69ea644d2c79dd4 Corrections to obey coding conventions --- diff --git a/STEER/AliCluster.cxx b/STEER/AliCluster.cxx index 83e18501b09..18390de0bb1 100644 --- a/STEER/AliCluster.cxx +++ b/STEER/AliCluster.cxx @@ -17,7 +17,7 @@ //------------------------------------------------------------------------- // Implementation of the Cluster class -// +// that is the base for AliTPCcluster, AliITSclusterV2 and AliTRDcluster // Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch //------------------------------------------------------------------------- diff --git a/STEER/AliKalmanTrack.cxx b/STEER/AliKalmanTrack.cxx index 7fb0e857abe..6c983b5bab0 100644 --- a/STEER/AliKalmanTrack.cxx +++ b/STEER/AliKalmanTrack.cxx @@ -17,7 +17,7 @@ //------------------------------------------------------------------------- // Implementation of the AliKalmanTrack class -// +// that is the base for AliTPCtrack, AliITStrackV2 and AliTRDtrack // Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch //------------------------------------------------------------------------- diff --git a/TPC/AliTPCBuffer.cxx b/TPC/AliTPCBuffer.cxx index 8431e64a51a..090ddbed36c 100644 --- a/TPC/AliTPCBuffer.cxx +++ b/TPC/AliTPCBuffer.cxx @@ -16,9 +16,10 @@ // Storing digits in a binary file // according to the DDL mapping -// +// To be used in Alice Data Challenges +// This class is used by AliTPCDDL.C macro // Author: D.Favretto -// + #include "Riostream.h" #include "TObjArray.h" #include "AliTPCBuffer.h" @@ -42,6 +43,7 @@ AliTPCBuffer::AliTPCBuffer(const char* fileName){ ////////////////////////////////////////////////////////////////////////////////////////////////////////////// AliTPCBuffer::~AliTPCBuffer(){ + // The destructor closes the IO stream f.close(); //delete tree; //delete fout; diff --git a/TPC/AliTPCBuffer.h b/TPC/AliTPCBuffer.h index cb79c49e935..eb7869534af 100644 --- a/TPC/AliTPCBuffer.h +++ b/TPC/AliTPCBuffer.h @@ -18,7 +18,9 @@ class AliSimDigits; //class TFile; class AliTPCBuffer:public TObject{ public: - AliTPCBuffer(){}//default constructor + AliTPCBuffer(){ + //default constructor + } AliTPCBuffer(const char* fileName);//constructor virtual ~AliTPCBuffer();//destructor AliTPCBuffer(const AliTPCBuffer &source); // copy constructor