CSidcDeltaR.h
//-----------------------------------------------------------------------------
// $Header: /asis/offline/ceres/cool/project/RCS/CSidcDeltaR.h,v 1.2 1997/06/24 16:14:55 messer Exp $
//
// COOL Program Library
// Copyright (C) CERES collaboration, 1996
//
// Declaration of class ...
//
//-----------------------------------------------------------------------------
#ifndef CSIDCDELTAR_H
#define CSIDCDELTAR_H
#include "cool.h"
#include "CSortedList.h"
class CLookupDeltaRadius;
class CSidcDeltaR {
public:
CSidcDeltaR(const char *name="");
~CSidcDeltaR();
private:
CSidcDeltaR(const CSidcDeltaR &);
CSidcDeltaR & operator = (const CSidcDeltaR &);
public:
float getDeltaR(float) const;
protected:
void readIn();
private:
CString fileName;
CSortedList<CLookupDeltaRadius> items;
};
#endif /* CSIDCDELTAR_H */