return;
}
//////////////////////////////////////////////////////////////////////////////////////////////////
-AliTPCCompression::AliTPCCompression(const AliTPCCompression &source){
+AliTPCCompression::AliTPCCompression(const AliTPCCompression &source)
+ :TObject(source){
//Constructor
this->fDimBuffer=source.fDimBuffer;
this->fFreeBitsBuffer=source.fFreeBitsBuffer;
/////////////////////////////////////////////////////////////////////////////////////////////////////
-Int_t AliTPCCompression::FillTables(const char* fSource,AliTPCHTable* table[],const Int_t NumTables){
+Int_t AliTPCCompression::FillTables(const char* fSource,AliTPCHTable* table[],const Int_t /*NumTables*/){
//This method is used to compute the frequencies of the symbols in the source file
AliTPCBuffer160 buff(fSource,0);
ULong_t countWords=0;
}
//////////////////////////////////////////////////////////////////////////////////////////////////
-Int_t AliTPCCompression::Decompress(AliTPCHNode *RootNode[],const Int_t NumTables,char* PointBuffer,ULong_t BufferSize,UShort_t out[],ULong_t &dim){
+Int_t AliTPCCompression::Decompress(AliTPCHNode *RootNode[],const Int_t /*NumTables*/,char* PointBuffer,ULong_t BufferSize,UShort_t out[],ULong_t &dim){
//This method decompress a file using separate Huffman tables
fPointBuffer=PointBuffer+BufferSize-4;
//////////////////////////////////////////////////////////////////////////////
-AliTPCHNode::AliTPCHNode(const AliTPCHNode &source){
+AliTPCHNode::AliTPCHNode(const AliTPCHNode &source)
+ :TObject(source){
//Copy Constructor
if(&source == this) return;
this->fSymbol = source.fSymbol;
//////////////////////////////////////////////////////////////////////////////
-AliTPCHTable::AliTPCHTable(const AliTPCHTable &source){
+AliTPCHTable::AliTPCHTable(const AliTPCHTable &source)
+ :TObject(source){
//Copy Constructor
if(&source == this) return;
this->fSize = source.fSize;