//-------------------------------------------------------------------------
// Implementation of the Cluster class
-//
+// that is the base for AliTPCcluster, AliITSclusterV2 and AliTRDcluster
// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
// Implementation of the AliKalmanTrack class
-//
+// that is the base for AliTPCtrack, AliITStrackV2 and AliTRDtrack
// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
//-------------------------------------------------------------------------
// 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"
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
AliTPCBuffer::~AliTPCBuffer(){
+ // The destructor closes the IO stream
f.close();
//delete tree;
//delete fout;
//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