]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/AliGammaDataReader.h
macro added: library checks specific to each HLT module
[u/mrichter/AliRoot.git] / PWG4 / AliGammaDataReader.h
CommitLineData
37da0d71 1#ifndef ALIGAMMADATAREADER_H
2#define ALIGAMMADATAREADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5/* $Id$ */
6
7/* History of cvs commits:
8 *
9 * $Log$
4b707925 10 * Revision 1.2 2007/08/21 08:38:20 schutz
11 * Missing heared file added
12 *
37da0d71 13 * Revision 1.1.2.1 2007/07/26 10:32:09 schutz
14 * new analysis classes in the the new analysis framework
15 *
16 *
17 */
18
19//_________________________________________________________________________
20// Class for reading data (ESDs) in order to do prompt gamma correlations
21// Class created from old AliPHOSGammaJet
22// (see AliRoot versions previous Release 4-09)
23
24//*-- Author: Gustavo Conesa (INFN-LNF)
25
26// --- ROOT system ---
27#include <TParticle.h>
28#include <TClonesArray.h>
29#include "AliGammaReader.h"
30
31class AliESDEvent ;
32
33class AliGammaDataReader : public AliGammaReader {
34
35public:
36
37 AliGammaDataReader() ; // ctor
38 AliGammaDataReader(const AliGammaDataReader & g) ; // cpy ctor
39 AliGammaDataReader & operator = (const AliGammaDataReader & g) ;//cpy assignment
40 virtual ~AliGammaDataReader() {;} //virtual dtor
41
37da0d71 42 void CreateParticleList(TObject * esd, TObject *,TClonesArray * plCh,
4b707925 43 TClonesArray * plEMCAL, TClonesArray * plPHOS, TClonesArray *,TClonesArray *, TClonesArray *);
37da0d71 44
45 private:
46
4b707925 47 ClassDef(AliGammaDataReader,1)
37da0d71 48} ;
49
50
51#endif //ALIGAMMADATAREADER_H
52
53
54