BOSS 6.6.4.p01
BESIII Offline Software System
Loading...
Searching...
No Matches
TrkHotSelector.h
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3// $Id: TrkHotSelector.h,v 1.1.1.1 2005/04/21 06:01:42 zhangy Exp $
4//
5// Description:
6// class TrkHotSelector. An abstract base class for deciding whether a
7// particular HOT is useful for a given application.
8//
9// Environment:
10// Software developed for the BaBar Detector at the SLAC B-Factory.
11//
12// Copyright Information:
13// Copyright (C) 2001 Lawrence Berkeley Laboratory
14//
15// Author List:
16// Dave Brown 7/17/01
17//------------------------------------------------------------------------
18
19#ifndef TRKHOTSELECTOR_HH
20#define TRKHOTSELECTOR_HH
21
22class TrkHitOnTrk;
23
25public:
26// only a default constructor
28 virtual ~TrkHotSelector(){};
29// The Function
30 virtual bool useHot(const TrkHitOnTrk& hot) const = 0;
31private:
32// disallow
34 TrkHotSelector& operator = (const TrkHotSelector&);
35};
36#endif
virtual ~TrkHotSelector()
virtual bool useHot(const TrkHitOnTrk &hot) const =0