Back to index

CRich2Setup.C

 
//----------------------------------------------------------------------------- 
//  $Header: /tmp_mnt/asis/offline/ceres/cool/project/RCS/CRich2Setup.C,v 1.2 1996/10/07 12:54:06 voigt Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Implementation of class ... 
// 
//----------------------------------------------------------------------------- 
#include <iostream.h> 
#include <iomanip.h> 
#include "CRich2Setup.h"  
 
CRich2Setup::CRich2Setup()  
{ 
} 
 
CRich2Setup::~CRich2Setup()  
{ 
} 
 
CRich2Setup::CRich2Setup(const CRich2Setup &)  
{ 
} 
 
CRich2Setup & CRich2Setup::operator = (const CRich2Setup &)  
{ 
   return *this; 
} 
 
 
void CRich2Setup::read(const char* filename) 
{ 
   CDetectorSetup::_read(filename); 
   CRichLikeSetup::_read(filename); 
   CRichSetup::_read(filename); 
   _read(filename); 
} 
 
void CRich2Setup::_read(const char* filename) 
{ 
} 
 
void CRich2Setup::list(ostream& ost)  
{ 
   CDetectorSetup::_list(ost); 
   CRichLikeSetup::_list(ost); 
   CRichSetup::_list(ost); 
   _list(ost); 
} 
 
void CRich2Setup::_list(ostream& ost)  
{ 
} 

Back to index