]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTReconstructorBase.h
Moving required CMake version from 2.8.4 to 2.8.8
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTReconstructorBase.h
CommitLineData
a3ef3c1d 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
7bf6c76d 12 @brief AliHLTPluginBase child for backward compatibility.
a3ef3c1d 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
7bf6c76d 21#include "AliHLTPluginBase.h"
a3ef3c1d 22
23/**
24 * @class AliHLTReconstructorBase
7bf6c76d 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
a3ef3c1d 29 */
7bf6c76d 30class AliHLTReconstructorBase : public AliHLTPluginBase {
a3ef3c1d 31 public:
32 AliHLTReconstructorBase();
7bf6c76d 33 ~AliHLTReconstructorBase();
a3ef3c1d 34
35 protected:
36
37 private:
7bf6c76d 38 ClassDef(AliHLTReconstructorBase, 0) // AliHLTPluginBase child for backward compatibility
a3ef3c1d 39};
40#endif