]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/PartCorrBase/AliCaloTrackESDReader.h
1) AliCaloTrackReader: Possibility to open a second input file with events, when...
[u/mrichter/AliRoot.git] / PWG4 / PartCorrBase / AliCaloTrackESDReader.h
1 #ifndef ALICALOTRACKESDREADER_H
2 #define ALICALOTRACKESDREADER_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 //_________________________________________________________________________
8 // Class for reading data (ESDs) in order to do prompt gamma 
9 //  or other particle identification and correlations
10 // 
11 //
12 //
13 //
14 //*-- Author: Gustavo Conesa (INFN-LNF)
15
16 // --- ROOT system --- 
17
18 // --- AliRoot system ---
19 #include "AliCaloTrackReader.h" 
20
21 class AliCaloTrackESDReader : public AliCaloTrackReader {
22   
23   public: 
24   
25   AliCaloTrackESDReader() ; // ctor
26   AliCaloTrackESDReader(const AliCaloTrackESDReader & g) ; // cpy ctor
27   //AliCaloTrackESDReader & operator = (const AliCaloTrackESDReader & g) ;//cpy assignment
28   virtual ~AliCaloTrackESDReader() {;} //virtual dtor
29   
30   void FillInputCTS  () ;
31   void FillInputEMCAL() ;
32   void FillInputPHOS () ;  
33   void FillInputEMCALCells() ;
34   void FillInputPHOSCells() ;
35   
36   void GetVertex(Double_t v[3]) const ;
37   void SetInputOutputMCEvent(AliVEvent* esd, AliAODEvent* aod, AliMCEvent* mc) ; 
38   
39   ClassDef(AliCaloTrackESDReader,1)
40     } ;
41
42
43 #endif //ALICALOTRACKESDREADER_H
44
45
46