Back to index

See source file

CRich2.h

 
//----------------------------------------------------------------------------- 
//  $Header: /cool/project/RCS/CRich2.h,v 2.6 1996/12/11 17:50:56 messer Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declaration of class CRich2. 
// 
//----------------------------------------------------------------------------- 
#ifndef CRICH2_H 
#define CRICH2_H 
 
#include "cool.h"  
#include "CRich.h" 
#include "CRich2Setup.h" 
 
#define C_SETUPFILE_RICH2 "setup.rich2" 
#define C_MODULEMAP_RICH2 "rich2_modules.map" 
#define C_HUFFMAN_TABLE_RICH2 "rich1_huffman.table" 
 
class CRich2Setup; 
 
class CRich2 : public CRich {  
 
public:  
  CRich2(const char* = 0);  
  ~CRich2();  
  CRich2(const CRich2 &);  
  CRich2 & operator = (const CRich2 &);  
 
protected:  
   CRich2Setup *setup; 
};  
 
#endif /* CRICH2_H */  

Back to index

See source file