CRich1.h
//-----------------------------------------------------------------------------
// $Header: /cool/project/RCS/CRich1.h,v 2.8 1996/12/11 17:50:57 messer Exp $
//
// COOL Program Library
// Copyright (C) CERES collaboration, 1996
//
// Declarations for CRich1 class.
//
//-----------------------------------------------------------------------------
#ifndef CRICH1_H
#define CRICH1_H
#include <iostream.h>
#include "cool.h"
#include "CRich.h"
#include "CRich1Setup.h"
#define C_SETUPFILE_RICH1 "setup.rich1"
#define C_MODULEMAP_RICH1 "rich1_modules.map"
#define C_HUFFMAN_TABLE_RICH1 "rich1_huffman.table"
class CRich1 : public CRich {
public:
CRich1(const char* = 0);
~CRich1();
protected:
CRich1(const CRich1 &);
CRich1 & operator = (const CRich1 &);
protected:
CRich1Setup *setup;
};
#endif /* CRICH1_H */