]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHReconstructor.h
Protecting if the events are not there
[u/mrichter/AliRoot.git] / RICH / AliRICHReconstructor.h
CommitLineData
3165deda 1#ifndef AliRICHReconstructor_h
2#define AliRICHReconstructor_h
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id: */
8
9#include <TTask.h>
10#include <TROOT.h>
11
12class AliRICHReconstructor: public TTask
13{
14public:
15// ctor & dtor:
16 AliRICHReconstructor(){}
17 AliRICHReconstructor(const char *sName,const char *sTitle):TTask(sName,sTitle)
18 {gROOT->GetListOfTasks()->Add(this);gROOT->GetListOfBrowsables()->Add(this);}
19 virtual ~AliRICHReconstructor(){}
20// The following staff is defined in .cxx:
21 virtual void Exec(Option_t *option);
22protected:
23 ClassDef(AliRICHReconstructor,1) // Digits or Clusters to RecoClonesArray
24};
25#endif // AliRICHReconstructor_h