CRingMask.h
//-----------------------------------------------------------------------------
// $Header: /asis/offline/ceres/cool/project/RCS/CRingMask.h,v 3.0 1996/10/02 09:40:18 voigt Exp $
//
// COOL Program Library
// Copyright (C) CERES collaboration, 1996
//
// Declarations for CRingMask class.
//
//-----------------------------------------------------------------------------
#ifndef CRINGMASK_H
#define CRINGMASK_H
#include "cool.h"
class CRingMask {
public:
CRingMask();
CRingMask(const int);
~CRingMask();
void resize(const int);
public:
int length;
int *x,*y;
};
#endif /* CRINGMASK_H */