00001 00002 // $$ 00003 // 00004 // AlgReco 00005 // 00006 // AlgReco is an abstract base class. This class should and cannot 00007 // be instantiated. 00008 // 00009 // Author: R. Lee 2002.08.06 00010 // 00012 00013 #ifndef ALGRECO_H 00014 #define ALGRECO_H 00015 00016 #include <Rtypes.h> // for ClassDef 00017 00018 class CandRecoHandle; 00019 00020 class AlgReco 00021 { 00022 00023 protected: 00024 00025 void Calibrate(CandRecoHandle *); 00026 00027 AlgReco() { } 00028 virtual ~AlgReco() { } 00029 00030 ClassDef(AlgReco,0) 00031 00032 }; 00033 00034 #endif // ALGRECO_H
1.3.9.1