Back to index

See source file

CSidc1.h

 
//----------------------------------------------------------------------------- 
//  $Header: /cool/project/RCS/CSidc1.h,v 3.3 1997/02/26 11:36:06 lenkeit Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declarations for  CSidc1 class. 
// 
//----------------------------------------------------------------------------- 
#ifndef CSIDC1_H 
#define CSIDC1_H 
 
#include <iostream.h> 
#include "cool.h" 
#include "CSidc.h" 
 
#define C_SETUPFILE_SIDC1 "setup.sidc1" 
#define C_CALIBRATION_FILE_SIDC1 "calibration.sidc1" 
 
class CSidc1 : public CSidc { 
public: 
   CSidc1(const char* = 0); 
   ~CSidc1(); 
    
   virtual double calculateAmplitude(double, double, double, double); 
    
protected:  
  CSidc1(const CSidc1 &);  
  CSidc1 & operator = (const CSidc1 &);  
}; 
 
#endif /* CSIDC1_H */ 

Back to index

See source file