]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Corrections to obey coding conventions
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 3 Mar 2003 16:32:40 +0000 (16:32 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 3 Mar 2003 16:32:40 +0000 (16:32 +0000)
STEER/AliCluster.cxx
STEER/AliKalmanTrack.cxx
TPC/AliTPCBuffer.cxx
TPC/AliTPCBuffer.h

index 83e18501b096e365c0a3d125632bbe53cdc23cbd..18390de0bb19b97770a3fc508ef17c7147f55ff1 100644 (file)
@@ -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
 //-------------------------------------------------------------------------
 
index 7fb0e857abeebdd380f8f9dbbcdef1fc9db15264..6c983b5bab0274a11f85a20d5a22cc6767820354 100644 (file)
@@ -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
 //-------------------------------------------------------------------------
 
index 8431e64a51a289a4f702302fa5cfe0742ce3c4ca..090ddbed36c5eb8dcab6e39bbc0bf1b186092bd4 100644 (file)
 
 // 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;
index cb79c49e93555aedc6239e6f7dba517fa76095e9..eb7869534afadf67dcdf23936a91f3ddba2b58e2 100644 (file)
@@ -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