]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaRec/AliTRDinfoGen.h
move reconstruction setup parameters to debug level 1 (asked by
[u/mrichter/AliRoot.git] / TRD / qaRec / AliTRDinfoGen.h
CommitLineData
873458ab 1#ifndef ALITRDINFOGEN_H
2#define ALITRDINFOGEN_H
814ecea4 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
873458ab 6/* $Id: AliTRDinfoGen.h 27496 2008-07-22 08:35:45Z cblume $ */
814ecea4 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;
873458ab 25class AliTRDinfoGen : public AliTRDrecoTask{
814ecea4 26public:
27
873458ab 28 AliTRDinfoGen();
29 virtual ~AliTRDinfoGen();
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:
873458ab 40 AliTRDinfoGen(const AliTRDinfoGen&);
41 AliTRDinfoGen& operator=(const AliTRDinfoGen&);
814ecea4 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
873458ab 49 ClassDef(AliTRDinfoGen, 1) // entry to TRD analysis
814ecea4 50};
51#endif