Back to index

See source file

CSidc2.h

 
//----------------------------------------------------------------------------- 
//  $Header: /cool/project/RCS/CSidc2.h,v 3.3 1997/02/26 11:42:58 lenkeit Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declaration of CSidc2 class. 
// 
//----------------------------------------------------------------------------- 
#ifndef CSIDC2_H 
#define CSIDC2_H 
 
#include <iostream.h> 
#include "cool.h" 
#include "CSidc.h" 
 
#define C_SETUPFILE_SIDC2 "setup.sidc2" 
#define C_CALIBRATION_FILE_SIDC2 "calibration.sidc2" 
 
class CSidc2 : public CSidc { 
public: 
   CSidc2(const char* = 0); 
   ~CSidc2(); 
 
   virtual double calculateAmplitude(double, double, double, double); 
    
protected:  
  CSidc2(const CSidc2 &);  
  CSidc2 & operator = (const CSidc2 &);  
}; 
 
#endif /* CSIDC2_H */ 

Back to index

See source file