Back to index

See source file

CRich2Setup.h

 
//----------------------------------------------------------------------------- 
//  $Header: /tmp_mnt/asis/offline/ceres/cool/project/RCS/CRich2Setup.h,v 1.2 1996/10/07 12:54:05 voigt Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declaration of class ... 
// 
//----------------------------------------------------------------------------- 
#ifndef CRICH2SETUP_H 
#define CRICH2SETUP_H 
 
#include "cool.h"  
#include "CRichSetup.h"  
 
class CRich2Setup : public CRichSetup  {  
 
public:  
  CRich2Setup();  
  ~CRich2Setup();  
 
  CRich2Setup(const CRich2Setup &);  
  CRich2Setup & operator = (const CRich2Setup &);  
 
public:  
 
   void read(const char*); 
   void list(ostream& ost = cout); 
   void _read(const char*); 
   void _list(ostream& ost = cout); 
};  
 
#endif /* CRICH2SETUP_H */  

Back to index

See source file