]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/AliGammaDataReader.h
Online (ideal) calibration file for the new naming of the directory
[u/mrichter/AliRoot.git] / PWG4 / AliGammaDataReader.h
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 #include <TParticle.h> 
28 #include <TClonesArray.h> 
29 #include "AliGammaReader.h" 
30
31 class AliESDEvent ;
32
33 class AliGammaDataReader : public AliGammaReader {
34
35 public: 
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
42   void CreateParticleList(TObject * esd, TObject *,TClonesArray * plCh, 
43                           TClonesArray * plEMCAL, TClonesArray * plPHOS, TClonesArray *,TClonesArray *, TClonesArray *);
44   
45  private:
46
47   ClassDef(AliGammaDataReader,1)
48 } ;
49  
50
51 #endif //ALIGAMMADATAREADER_H
52
53
54