CTrackList.h
//-----------------------------------------------------------------------------
// $Header: /asis/offline/ceres/cool/project/RCS/CTrackList.h,v 1.1 1997/06/03 10:54:00 messer Exp $
//
// COOL Program Library
// Copyright (C) CERES collaboration, 1996
//
// Declaration of class CTrackList
//
//-----------------------------------------------------------------------------
#ifndef CTRACKLIST_H
#define CTRACKLIST_H
#include "cool.h"
#include "CSortedList.h"
#include "CTrack.h"
class CTrackList : public CSortedList<CTrack> {
public:
CTrackList() {}
~CTrackList() {}
};
#endif /* CTRACKLIST_H */