Line data Source code
1 : // $Id$
2 :
3 : #ifndef ALIHLTRECONSTRUCTORBASE_H
4 : #define ALIHLTRECONSTRUCTORBASE_H
5 : //* This file is property of and copyright by the ALICE HLT Project *
6 : //* ALICE Experiment at CERN, All rights reserved. *
7 : //* See cxx source for full Copyright notice *
8 :
9 : /** @file AliHLTReconstructorBase.h
10 : @author Matthias Richter
11 : @date
12 : @brief AliHLTPluginBase child for backward compatibility.
13 : */
14 :
15 : // see below for class documentation
16 : // or
17 : // refer to README to build package
18 : // or
19 : // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
20 :
21 : #include "AliHLTPluginBase.h"
22 :
23 : /**
24 : * @class AliHLTReconstructorBase
25 : * This class was the former name of the base class for HLT
26 : * reconstruction instances. It has evolved to a more general
27 : * 'plugin' base class and the name has been changed to
28 : * AliHLTPluginBase
29 : */
30 : class AliHLTReconstructorBase : public AliHLTPluginBase {
31 : public:
32 : AliHLTReconstructorBase();
33 : ~AliHLTReconstructorBase();
34 :
35 : protected:
36 :
37 : private:
38 126 : ClassDef(AliHLTReconstructorBase, 0) // AliHLTPluginBase child for backward compatibility
39 : };
40 : #endif
|