]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaRec/AliTRDtrackInfoGen.h
- fix in AliTRDcheckDetector in the PHs plotter that uses the cluster
[u/mrichter/AliRoot.git] / TRD / qaRec / AliTRDtrackInfoGen.h
CommitLineData
814ecea4 1#ifndef ALITRDTRACKINFOGEN_H
2#define ALITRDTRACKINFOGEN_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliTRDtrackInfoGen.h 27496 2008-07-22 08:35:45Z cblume $ */
7
8////////////////////////////////////////////////////////////////////////////
9// //
10// Reconstruction QA //
11// //
12////////////////////////////////////////////////////////////////////////////
13
3d86166d 14#ifndef ALITRDRECOTASK_H
15#include "AliTRDrecoTask.h"
16#endif
814ecea4 17
18class AliESDEvent;
19class AliMCEvent;
20class AliESDfriend;
21class AliTRDtrackInfo;
a24151d1 22class AliTRDeventInfo;
814ecea4 23class TObjArray;
24class TTreeSRedirector;
3d86166d 25class AliTRDtrackInfoGen : public AliTRDrecoTask{
814ecea4 26public:
27
3d86166d 28 AliTRDtrackInfoGen();
ed383798 29 virtual ~AliTRDtrackInfoGen();
814ecea4 30
31 void ConnectInputData(Option_t *);
32 void CreateOutputObjects();
814ecea4 33 void Exec(Option_t *);
814ecea4 34 void Terminate(Option_t *);
35
303f052c 36 static const Float_t xTPC;
37 static const Float_t xTOF;
38
814ecea4 39private:
814ecea4 40 AliTRDtrackInfoGen(const AliTRDtrackInfoGen&);
41 AliTRDtrackInfoGen& operator=(const AliTRDtrackInfoGen&);
42
814ecea4 43 AliESDEvent *fESD; // ESD event
44 AliMCEvent *fMC; // MC event
45 AliESDfriend *fESDfriend; // ESD friends
46 AliTRDtrackInfo *fTrackInfo; // Track info
a24151d1 47 AliTRDeventInfo *fEventInfo; // Event info
814ecea4 48
49 ClassDef(AliTRDtrackInfoGen, 1) // entry to TRD analysis
50};
51#endif