]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/ITSrec/AliITSreconstruction.h
Double check if SM is running added. Some redundant output removed from SM
[u/mrichter/AliRoot.git] / ITS / ITSrec / AliITSreconstruction.h
CommitLineData
e69020a0 1#ifndef ALIITSRECONSTRUCTION_H
2#define ALIITSRECONSTRUCTION_H
3/* Copyright (c) 1998-2001, ALICE Experiment at CERN, All rights reserved *
4 * See cxx source for full Copyright notice */
5
6/*
7 $Id$
8 */
7d62fb64 9/////////////////////////////////////////////////////////////////////////
10// //
11// Class for ITS RecPoint reconstruction //
12// //
13////////////////////////////////////////////////////////////////////////
e69020a0 14
f21fc003 15#include <TNamed.h>
e69020a0 16
88cb7938 17class AliRunLoader;
6cae184e 18class AliITSLoader;
e69020a0 19class TString;
efc69e78 20class AliITSgeom;
e69020a0 21
f21fc003 22class AliITSreconstruction : public TNamed{
e69020a0 23 public:
24 AliITSreconstruction(); // default constructor
25 AliITSreconstruction(const char *filename); // standard constructor
88cb7938 26 AliITSreconstruction(AliRunLoader *rl); // standard constructor
e69020a0 27 virtual ~AliITSreconstruction();//Destructor
28 virtual Bool_t Init();
29 virtual void Exec(const Option_t *opt="ALL");
f243fbe6 30 virtual void SetOutputFile(TString filename);
e69020a0 31 private:
32 Bool_t InitRec(); // Standard Reconstrution initilization.
33 private:
8221b41b 34
35 AliITSreconstruction(const AliITSreconstruction& rec);
36 AliITSreconstruction& operator=(const AliITSreconstruction &source);
37
e69020a0 38 Bool_t fDet[3]; //! logical specifing which detectors to reconstruct.
39 Bool_t fInit; //! True if Init was sucessfull, else false.
e69020a0 40 Int_t fEnt; //! Number of events to processevent index.
41 Int_t fEnt0; //! first event to process, default 0.
7d62fb64 42 AliITSDetTypeRec *fDetTypeRec; //!ITS obj. for reconstruction
88cb7938 43 Bool_t fDfArp; //! if True then delete fRunLoader in destructor.
7d62fb64 44 AliITSgeom* fITSgeom;//! ITS geometry
88cb7938 45 AliITSLoader *fLoader; //! ITS loader
46 AliRunLoader* fRunLoader;//!Run Loader
7d62fb64 47
f21fc003 48 ClassDef(AliITSreconstruction,4) // Class to Reconstruct ITS from Digits.
e69020a0 49
50};
51#endif