]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PWG4/AliGammaDataReader.h
streaming of AliAnaGamma and its data members (removed ! in .h) (MG)
[u/mrichter/AliRoot.git] / PWG4 / AliGammaDataReader.h
... / ...
CommitLineData
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$
10 * Revision 1.2 2007/08/21 08:38:20 schutz
11 * Missing heared file added
12 *
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
28// --- AliRoot system ---
29#include "AliGammaReader.h"
30
31class AliGammaDataReader : public AliGammaReader {
32
33public:
34
35 AliGammaDataReader() ; // ctor
36 AliGammaDataReader(const AliGammaDataReader & g) ; // cpy ctor
37 AliGammaDataReader & operator = (const AliGammaDataReader & g) ;//cpy assignment
38 virtual ~AliGammaDataReader() {;} //virtual dtor
39
40 void CreateParticleList(TObject * esd, TObject *,TClonesArray * plCh,
41 TClonesArray * plEMCAL, TClonesArray * plPHOS, TClonesArray *,TClonesArray *, TClonesArray *);
42
43 private:
44
45 ClassDef(AliGammaDataReader,1)
46} ;
47
48
49#endif //ALIGAMMADATAREADER_H
50
51
52